Cleanup home
This commit is contained in:
parent
c52b27c763
commit
8862537d5e
4 changed files with 92 additions and 78 deletions
|
|
@ -69,6 +69,7 @@ in
|
||||||
options = [ "--cmd cd" ];
|
options = [ "--cmd cd" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
xdg.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -291,11 +291,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_6": {
|
"nixpkgs_6": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1708475490,
|
"lastModified": 1708655239,
|
||||||
"narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=",
|
"narHash": "sha256-ZrP/yACUvDB+zbqYJsln4iwotbH6CTZiTkANJ0AgDv4=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "0e74ca98a74bc7270d28838369593635a5db3260",
|
"rev": "cbc4211f0afffe6dfd2478a62615dd5175a13f9a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -1,86 +1,96 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
let usr = config.constants.userName; in {
|
let usr = config.constants.userName; in {
|
||||||
home-manager.users.${usr} = {
|
home-manager.users.${usr} = { config, pkgs, ... }:
|
||||||
home.packages = with pkgs; [
|
let xdgCfg = config.xdg; in {
|
||||||
exactaudiocopy
|
gtk = {
|
||||||
haruna
|
|
||||||
lutris
|
|
||||||
miru
|
|
||||||
nvtop-amd
|
|
||||||
picard
|
|
||||||
qbittorrent-qt5
|
|
||||||
sweet
|
|
||||||
sweet-nova
|
|
||||||
tauon
|
|
||||||
telegram-desktop
|
|
||||||
thunderbird
|
|
||||||
wallpaper-engine-kde-plugin
|
|
||||||
wineWowPackages.waylandFull
|
|
||||||
winetricks
|
|
||||||
yorha-sound-theme
|
|
||||||
yuzu
|
|
||||||
] ++ (with libsForQt5; [
|
|
||||||
polonium
|
|
||||||
qt5.qtwebsockets
|
|
||||||
]);
|
|
||||||
programs = {
|
|
||||||
firefox.enable = true;
|
|
||||||
gpg.enable = true;
|
|
||||||
kitty = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
gtk2.configLocation = "${xdgCfg.configHome}/gtk-2.0/gtkrc";
|
||||||
background_opacity = "0.96";
|
theme = {
|
||||||
remember_window_size = "no";
|
name = "Sweet-Dark";
|
||||||
|
package = pkgs.sweet;
|
||||||
};
|
};
|
||||||
theme = "Tokyo Night Moon";
|
|
||||||
};
|
};
|
||||||
obs-studio.enable = true;
|
home.packages = with pkgs; [
|
||||||
zathura = {
|
exactaudiocopy
|
||||||
enable = true;
|
haruna
|
||||||
options = {
|
lutris
|
||||||
notification-error-bg = "#1d2021";
|
nvtop-amd
|
||||||
notification-error-fg = "#fb4934";
|
picard
|
||||||
notification-warning-bg = "#1d2021";
|
qbittorrent-qt5
|
||||||
notification-warning-fg = "#fabd2f";
|
sweet-nova
|
||||||
notification-bg = "#1d2021";
|
tauon
|
||||||
notification-fg = "#b8bb26";
|
telegram-desktop
|
||||||
completion-bg = "#504945";
|
thunderbird
|
||||||
completion-fg = "#ebdbb2";
|
wallpaper-engine-kde-plugin
|
||||||
completion-group-bg = "#3c3836";
|
wineWowPackages.waylandFull
|
||||||
completion-group-fg = "#928374";
|
winetricks
|
||||||
completion-highlight-bg = "#83a598";
|
yorha-sound-theme
|
||||||
completion-highlight-fg = "#504945";
|
yuzu
|
||||||
index-bg = "#504945";
|
] ++ (with libsForQt5; [
|
||||||
index-fg = "#ebdbb2";
|
polonium
|
||||||
index-active-bg = "#83a598";
|
qt5.qtwebsockets
|
||||||
index-active-fg = "#504945";
|
]);
|
||||||
inputbar-bg = "#1d2021";
|
programs = {
|
||||||
inputbar-fg = "#ebdbb2";
|
firefox.enable = true;
|
||||||
statusbar-bg = "#504945";
|
gpg = {
|
||||||
statusbar-fg = "#ebdbb2";
|
enable = true;
|
||||||
highlight-color = "#fabd2f";
|
homedir = "${xdgCfg.dataHome}/gnupg";
|
||||||
highlight-active-color = "#fe8019";
|
};
|
||||||
default-bg = "#1d2021";
|
kitty = {
|
||||||
default-fg = "#ebdbb2";
|
enable = true;
|
||||||
render-loading = "true";
|
settings = {
|
||||||
render-loading-bg = "#1d2021";
|
background_opacity = "0.96";
|
||||||
render-loading-fg = "#ebdbb2";
|
remember_window_size = "no";
|
||||||
recolor = "true";
|
};
|
||||||
recolor-darkcolor = "#ebdbb2";
|
theme = "Tokyo Night Moon";
|
||||||
recolor-lightcolor = "#1d2021";
|
};
|
||||||
recolor-keephue = "true";
|
obs-studio.enable = true;
|
||||||
|
zathura = {
|
||||||
|
enable = true;
|
||||||
|
options = {
|
||||||
|
notification-error-bg = "#1d2021";
|
||||||
|
notification-error-fg = "#fb4934";
|
||||||
|
notification-warning-bg = "#1d2021";
|
||||||
|
notification-warning-fg = "#fabd2f";
|
||||||
|
notification-bg = "#1d2021";
|
||||||
|
notification-fg = "#b8bb26";
|
||||||
|
completion-bg = "#504945";
|
||||||
|
completion-fg = "#ebdbb2";
|
||||||
|
completion-group-bg = "#3c3836";
|
||||||
|
completion-group-fg = "#928374";
|
||||||
|
completion-highlight-bg = "#83a598";
|
||||||
|
completion-highlight-fg = "#504945";
|
||||||
|
index-bg = "#504945";
|
||||||
|
index-fg = "#ebdbb2";
|
||||||
|
index-active-bg = "#83a598";
|
||||||
|
index-active-fg = "#504945";
|
||||||
|
inputbar-bg = "#1d2021";
|
||||||
|
inputbar-fg = "#ebdbb2";
|
||||||
|
statusbar-bg = "#504945";
|
||||||
|
statusbar-fg = "#ebdbb2";
|
||||||
|
highlight-color = "#fabd2f";
|
||||||
|
highlight-active-color = "#fe8019";
|
||||||
|
default-bg = "#1d2021";
|
||||||
|
default-fg = "#ebdbb2";
|
||||||
|
render-loading = "true";
|
||||||
|
render-loading-bg = "#1d2021";
|
||||||
|
render-loading-fg = "#ebdbb2";
|
||||||
|
recolor = "true";
|
||||||
|
recolor-darkcolor = "#ebdbb2";
|
||||||
|
recolor-lightcolor = "#1d2021";
|
||||||
|
recolor-keephue = "true";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
services = {
|
||||||
|
easyeffects.enable = true;
|
||||||
|
gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
pinentryFlavor = "qt";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services = {
|
|
||||||
easyeffects.enable = true;
|
|
||||||
gpg-agent = {
|
|
||||||
enable = true;
|
|
||||||
pinentryFlavor = "qt";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
dconf.enable = true;
|
dconf.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,9 @@
|
||||||
in {
|
in {
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
packages = with pkgs; [ texlive.combined.scheme-full ];
|
packages = with pkgs; [ texlive.combined.scheme-full ];
|
||||||
|
TEXMFHOME = "$XDG_DATA_HOME/texmf";
|
||||||
|
TEXMFVAR = "$XDG_CACHE_HOME/texlive/texmf-var";
|
||||||
|
EXMFCONFIG = "$XDG_CONFIG_HOME/texlive/texmf-config";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue