Move dconf to seperate nix file
This commit is contained in:
1
home.nix
1
home.nix
@@ -13,6 +13,7 @@
|
||||
./programs/zsh.nix
|
||||
./programs/direnv.nix
|
||||
./programs/firefox.nix
|
||||
./wm/dconf.nix
|
||||
./wm/gtk.nix
|
||||
./wm/hyprland.nix
|
||||
./wm/hyprpaper.nix
|
||||
|
||||
16
wm/dconf.nix
Normal file
16
wm/dconf.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
dconf
|
||||
];
|
||||
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
wm/gtk.nix
13
wm/gtk.nix
@@ -1,19 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
dconf
|
||||
];
|
||||
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
|
||||
Reference in New Issue
Block a user