diff --git a/hosts/common/global/default.nix b/hosts/common/global/default.nix index 6710315b..70b22e59 100644 --- a/hosts/common/global/default.nix +++ b/hosts/common/global/default.nix @@ -24,6 +24,7 @@ ./nix-ld.nix ./prometheus-node-exporter.nix ./kdeconnect.nix + ./upower.nix ] ++ (builtins.attrValues outputs.nixosModules); diff --git a/hosts/common/global/upower.nix b/hosts/common/global/upower.nix new file mode 100644 index 00000000..1aab0146 --- /dev/null +++ b/hosts/common/global/upower.nix @@ -0,0 +1,3 @@ +{ + services.upower.enable = true; +}