nix/module/desktop/Dconf.nix

11 lines
307 B
Nix
Raw Normal View History

2024-05-12 02:40:37 +03:00
{ util, ... } @args: let
settings = util.catSet (util.ls ./dconf) args;
2024-04-06 03:03:58 +03:00
in {
# Gnome DE and GTK apps configuration.
2024-03-28 07:51:33 +03:00
programs.dconf.enable = true;
programs.dconf.profiles.user = {
enableUserDb = true; # Delete `~/.config/dconf/user` to reset user settings.
2024-05-12 02:40:37 +03:00
databases = [{ inherit settings; }];
2024-03-28 07:51:33 +03:00
};
}