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
|
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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user