chore: Add missing inherit

Also fixes an issue with mkMerge requiring things to be written
like this.
This commit is contained in:
Donovan Glover 2024-04-05 07:04:22 -04:00
parent db5b95e983
commit 7b234dfb19
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -2,10 +2,9 @@
let let
inherit (lib) mkEnableOption mkIf mkMerge; inherit (lib) mkEnableOption mkIf mkMerge;
inherit (pkgs.xfce) thunar-volman exo;
inherit (pkgs) glib;
inherit (config.modules.system) username; inherit (config.modules.system) username;
inherit (cfg) japanese bloat wine; inherit (cfg) japanese bloat wine;
inherit (builtins) attrValues;
theme = "monokai"; theme = "monokai";
opacity = 0.95; opacity = 0.95;
@ -29,7 +28,9 @@ in
thunar = { thunar = {
enable = true; enable = true;
plugins = [ thunar-volman ]; plugins = attrValues {
inherit (pkgs.xfce) thunar-volman;
};
}; };
}; };
@ -97,9 +98,10 @@ in
; ;
})) }))
pulseaudio (attrValues {
exo inherit (pkgs) pulseaudio glib;
glib inherit (pkgs.xfce) exo;
})
]; ];
services.greetd = { services.greetd = {