fix(nix): Install system-manager

I missed this since I haven't deal with overlays that much before.
This commit is contained in:
Ahmad Ansori Palembani 2024-11-05 15:15:59 +07:00
parent e6e33fe186
commit e061a0379f
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 4 additions and 0 deletions

View file

@ -12,6 +12,9 @@ in
arch = "x86_64-linux";
stable = nixpkgs-stable;
unstable = nixpkgs-unstable;
extraOverlays = [
system-manager.overlays.default
];
nur = nur;
}
) system pkgs pkgs-unstable;

View file

@ -17,6 +17,7 @@
};
systemPackages =
common.packages ++ [
pkgs.system-manager
];
};