fix: home-manager build bug

This commit is contained in:
2026-04-13 11:33:41 -04:00
parent d834b0be80
commit 4c525f9335
2 changed files with 3 additions and 14 deletions

View File

@@ -14,11 +14,12 @@
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, nixpkgs-unstable, ... }@inputs: {
nixosConfigurations.alien = nixpkgs.lib.nixosSystem {
outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }@inputs: {
nixosConfigurations."alien" = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
];
};
};