mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-12 08:44:02 -05:00
things
This commit is contained in:
parent
d7179ea15b
commit
f39bee1c28
14 changed files with 156 additions and 36 deletions
|
@ -26,6 +26,11 @@
|
||||||
# USERS
|
# USERS
|
||||||
../../common/users/meyer
|
../../common/users/meyer
|
||||||
];
|
];
|
||||||
|
documentation = {
|
||||||
|
enable = true;
|
||||||
|
man.enable = true;
|
||||||
|
dev.enable = true;
|
||||||
|
};
|
||||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
||||||
nix.package = stable.nix;
|
nix.package = stable.nix;
|
||||||
|
|
|
@ -9,6 +9,11 @@
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
image = ./wallpaper.jpg;
|
image = ./wallpaper.jpg;
|
||||||
|
targets = {
|
||||||
|
spicetify = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
base16Scheme = {
|
base16Scheme = {
|
||||||
base00 = "#1A1B26";
|
base00 = "#1A1B26";
|
||||||
base01 = "#16161E";
|
base01 = "#16161E";
|
||||||
|
|
|
@ -1,11 +1,35 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, inputs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.spicetify-nix.homeManagerModules.default
|
||||||
|
];
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
spotify
|
# spotify
|
||||||
pulseaudioFull
|
pulseaudioFull
|
||||||
pavucontrol
|
pavucontrol
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
stylix = {
|
||||||
|
targets = {
|
||||||
|
spicetify = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
programs.spicetify =
|
||||||
|
let
|
||||||
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
enable = true;
|
||||||
|
enabledExtensions = with spicePkgs.extensions; [
|
||||||
|
adblock
|
||||||
|
hidePodcasts
|
||||||
|
shuffle # shuffle+ (special characters are sanitized out of extension names)
|
||||||
|
];
|
||||||
|
alwaysEnableDevTools = true;
|
||||||
|
};
|
||||||
xdg = {
|
xdg = {
|
||||||
desktopEntries = {
|
desktopEntries = {
|
||||||
spotifyOpen = {
|
spotifyOpen = {
|
||||||
|
@ -14,7 +38,12 @@
|
||||||
genericName = "Music Player";
|
genericName = "Music Player";
|
||||||
icon = "spotify-client";
|
icon = "spotify-client";
|
||||||
terminal = false;
|
terminal = false;
|
||||||
categories = [ "Audio" "Music" "Player" "AudioVideo" ];
|
categories = [
|
||||||
|
"Audio"
|
||||||
|
"Music"
|
||||||
|
"Player"
|
||||||
|
"AudioVideo"
|
||||||
|
];
|
||||||
exec = "qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri %U";
|
exec = "qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri %U";
|
||||||
mimeType = [ "x-scheme-handler/spotify" ];
|
mimeType = [ "x-scheme-handler/spotify" ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
{ pkgs, unstable, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
../unstable.nix
|
||||||
|
./ide/jb/clion.nix
|
||||||
|
];
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
xorg.libX11.man
|
||||||
meson
|
meson
|
||||||
autoPatchelfHook
|
autoPatchelfHook
|
||||||
cmake
|
cmake
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
gnumake
|
gnumake
|
||||||
binutils
|
(binutils-unwrapped.override {
|
||||||
|
withAllTargets = true;
|
||||||
|
})
|
||||||
|
libtree
|
||||||
linuxHeaders
|
linuxHeaders
|
||||||
man-pages
|
man-pages
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,12 +1,19 @@
|
||||||
{pkgs, config, ...}:
|
{ pkgs, config, ... }:
|
||||||
let
|
let
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../pinned.nix
|
../../pinned.nix
|
||||||
|
../../unstable.nix
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
pinned.vscode
|
# pinned.vscode
|
||||||
|
(unstable.vscode.fhsWithPackages (
|
||||||
|
pkgs: with pkgs; [
|
||||||
|
powershell
|
||||||
|
]
|
||||||
|
))
|
||||||
# codium
|
# codium
|
||||||
zed-editor
|
zed-editor
|
||||||
];
|
];
|
||||||
|
|
7
common/users/homeModules/dev/ide/jb/clion.nix
Normal file
7
common/users/homeModules/dev/ide/jb/clion.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home = {
|
||||||
|
packages = with pkgs.jetbrains; [
|
||||||
|
clion
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./idea.nix
|
./idea.nix
|
||||||
./androidStudio.nix
|
./androidStudio.nix
|
||||||
|
./clion.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ pkgs, unstable, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../prisma.nix
|
../prisma.nix
|
||||||
../../../../customPackages
|
../../../../customPackages
|
||||||
|
../unstable.nix
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{pkgs, unstable, ...}: {
|
{pkgs, ...}: {
|
||||||
|
imports = [
|
||||||
|
./unstable.nix
|
||||||
|
];
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
unstable.prisma
|
unstable.prisma
|
||||||
|
|
8
common/users/homeModules/unstable.nix
Normal file
8
common/users/homeModules/unstable.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ unstable, ... }:
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
inherit unstable;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
|
@ -19,6 +19,9 @@ in
|
||||||
zsh-powerlevel10k
|
zsh-powerlevel10k
|
||||||
zsh-syntax-highlighting
|
zsh-syntax-highlighting
|
||||||
];
|
];
|
||||||
|
sessionVariables = {
|
||||||
|
POWERSHELL_PATH = "${pkgs.powershell}/bin/pwsh";
|
||||||
|
};
|
||||||
file = {
|
file = {
|
||||||
p10k = {
|
p10k = {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
|
|
40
flake.lock
40
flake.lock
|
@ -154,6 +154,22 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-compat_3": {
|
"flake-compat_3": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1733328505,
|
||||||
|
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-compat_4": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696426674,
|
"lastModified": 1696426674,
|
||||||
|
@ -616,6 +632,7 @@
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"scripts": "scripts",
|
"scripts": "scripts",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
|
"spicetify-nix": "spicetify-nix",
|
||||||
"stylix": "stylix"
|
"stylix": "stylix"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -655,6 +672,27 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"spicetify-nix": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-compat": "flake-compat_3",
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1737692134,
|
||||||
|
"narHash": "sha256-FCHWBhrL59cPhKZvn+2ycpdzM74kETOnZ2HX5B4q4Ko=",
|
||||||
|
"owner": "Gerg-L",
|
||||||
|
"repo": "spicetify-nix",
|
||||||
|
"rev": "1a60b7cf6470e411e29697fe31b1d89660fccae3",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "Gerg-L",
|
||||||
|
"repo": "spicetify-nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"stylix": {
|
"stylix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"base16": "base16",
|
"base16": "base16",
|
||||||
|
@ -662,7 +700,7 @@
|
||||||
"base16-helix": "base16-helix",
|
"base16-helix": "base16-helix",
|
||||||
"base16-vim": "base16-vim",
|
"base16-vim": "base16-vim",
|
||||||
"firefox-gnome-theme": "firefox-gnome-theme",
|
"firefox-gnome-theme": "firefox-gnome-theme",
|
||||||
"flake-compat": "flake-compat_3",
|
"flake-compat": "flake-compat_4",
|
||||||
"flake-utils": "flake-utils_3",
|
"flake-utils": "flake-utils_3",
|
||||||
"git-hooks": "git-hooks",
|
"git-hooks": "git-hooks",
|
||||||
"gnome-shell": "gnome-shell",
|
"gnome-shell": "gnome-shell",
|
||||||
|
|
|
@ -38,6 +38,10 @@
|
||||||
};
|
};
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||||
nix-alien.url = "https://flakehub.com/f/thiagokokada/nix-alien/0.1.384.tar.gz";
|
nix-alien.url = "https://flakehub.com/f/thiagokokada/nix-alien/0.1.384.tar.gz";
|
||||||
|
spicetify-nix = {
|
||||||
|
url = "github:Gerg-L/spicetify-nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
outputs =
|
outputs =
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue