[NixOS] Add make-enable to control nixos modules with configuration

This commit is contained in:
2023-08-19 22:54:14 -06:00
parent d93b8da859
commit 4c6625ce50
8 changed files with 48 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
inputs: { pkgs, config, ... }: {
{ pkgs, config, specialArgs, ... }: {
xsession = {
enable = true;
preferStatusNotifierItems = true;
@@ -33,7 +33,7 @@ inputs: { pkgs, config, ... }: {
services.taffybar = {
enable = true;
package = inputs.imalison-taffybar.defaultPackage."${pkgs.system}";
package = specialArgs.nixos.specialArgs.inputs.imalison-taffybar.defaultPackage."${pkgs.system}";
};
services.notify-osd = {