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
|
||||
home.sessionPath = [
|
||||
"$HOME/.local/bin"
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
"GTK_THEME" = "Adwaita:dark";
|
||||
};
|
||||
|
||||
### DOCK
|
||||
theming.dock.enable = true;
|
||||
theming.dock.autostart = true;
|
||||
home.sessionPath = [ "$HOME/.local/bin" ];
|
||||
|
||||
music = {
|
||||
enable = true;
|
||||
|
@ -49,9 +49,18 @@ in
|
||||
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 {
|
||||
enable = true;
|
||||
entries = [
|
||||
"${pkgs.plank}/share/applications/plank.desktop"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user