services/gtk: use singleton to remove unnecessary list
This commit is contained in:
parent
22a9c7e80b
commit
6f4e01d8fa
1 changed files with 9 additions and 10 deletions
|
@ -6,6 +6,7 @@
|
|||
lib',
|
||||
...
|
||||
}: let
|
||||
inherit (lib.lists) singleton;
|
||||
inherit (lib'.generators.gtk) finalGtk2Text toGtk3Ini;
|
||||
inherit (config.local.systemVars) username;
|
||||
|
||||
|
@ -46,8 +47,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
programs.dconf.profiles.user.databases = [
|
||||
{
|
||||
programs.dconf.profiles.user.databases = singleton {
|
||||
lockAll = false;
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
|
@ -55,7 +55,6 @@ in {
|
|||
gtk-theme = styleCfg.gtk.theme.name;
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue