moved upower to dedicated module

This commit is contained in:
2026-08-07 19:04:33 +01:00
parent 749ee86763
commit bfeeacc434
3 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
{...}: {
flake.nixosModules.upower = {pkgs, ...}: {
environment.systemPackages = with pkgs; [
upower
];
services.upower.enable = true;
};
}