updated flake.nix

This commit is contained in:
KaitoTLex 2025-02-08 00:22:10 -08:00
parent 817185595b
commit 594d9c4ed0
No known key found for this signature in database
GPG key ID: A9209668BFA39C0E

View file

@ -92,5 +92,30 @@
}
];
};
nixosConfigurations.kurokoNightly = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
};
system = "x86_64-linux";
modules = [
./hosts/kurokoNightly
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
extraSpecialArgs = {
inherit inputs;
};
users.kaitotlex = {
imports = [ ./users/kaitotlex ];
};
};
}
];
};
};
}