update theming
- move GTK_THEME var to theming.nix - disable plank dock but reinstate the option
This commit is contained in:
parent
98a882dd4c
commit
fe4f198661
@ -53,17 +53,7 @@
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
### SESSION ENV
|
### SESSION ENV
|
||||||
home.sessionPath = [
|
home.sessionPath = [ "$HOME/.local/bin" ];
|
||||||
"$HOME/.local/bin"
|
|
||||||
];
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
"GTK_THEME" = "Adwaita:dark";
|
|
||||||
};
|
|
||||||
|
|
||||||
### DOCK
|
|
||||||
theming.dock.enable = true;
|
|
||||||
theming.dock.autostart = true;
|
|
||||||
|
|
||||||
music = {
|
music = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -49,9 +49,18 @@ in
|
|||||||
style.name = "adwaita-dark";
|
style.name = "adwaita-dark";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
"GTK_THEME" = "Adwaita:dark";
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = lib.mkIf cfg.enable [
|
||||||
|
pkgs.plank pkgs.libwnck pkgs.bamf
|
||||||
|
];
|
||||||
|
|
||||||
xdg.autostart = lib.mkIf cfg.autostart {
|
xdg.autostart = lib.mkIf cfg.autostart {
|
||||||
enable = true;
|
enable = true;
|
||||||
entries = [
|
entries = [
|
||||||
|
"${pkgs.plank}/share/applications/plank.desktop"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user