mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-09 15:38:12 +01:00
chore: Add missing inherit
Also fixes an issue with mkMerge requiring things to be written like this.
This commit is contained in:
parent
db5b95e983
commit
7b234dfb19
@ -2,10 +2,9 @@
|
||||
|
||||
let
|
||||
inherit (lib) mkEnableOption mkIf mkMerge;
|
||||
inherit (pkgs.xfce) thunar-volman exo;
|
||||
inherit (pkgs) glib;
|
||||
inherit (config.modules.system) username;
|
||||
inherit (cfg) japanese bloat wine;
|
||||
inherit (builtins) attrValues;
|
||||
|
||||
theme = "monokai";
|
||||
opacity = 0.95;
|
||||
@ -29,7 +28,9 @@ in
|
||||
|
||||
thunar = {
|
||||
enable = true;
|
||||
plugins = [ thunar-volman ];
|
||||
plugins = attrValues {
|
||||
inherit (pkgs.xfce) thunar-volman;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@ -97,9 +98,10 @@ in
|
||||
;
|
||||
}))
|
||||
|
||||
pulseaudio
|
||||
exo
|
||||
glib
|
||||
(attrValues {
|
||||
inherit (pkgs) pulseaudio glib;
|
||||
inherit (pkgs.xfce) exo;
|
||||
})
|
||||
];
|
||||
|
||||
services.greetd = {
|
||||
|
Loading…
Reference in New Issue
Block a user