Move dconf to seperate nix file

This commit is contained in:
2026-01-18 16:40:45 +01:00
parent 2bc15afa34
commit 16c7d3e999
3 changed files with 17 additions and 13 deletions

View File

@@ -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
View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
dconf
];
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
};
}

View File

@@ -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 = {