From 594d9c4ed0764c5c7c89ae8de8e1c3a50a63daf8 Mon Sep 17 00:00:00 2001 From: KaitoTLex Date: Sat, 8 Feb 2025 00:22:10 -0800 Subject: [PATCH] updated flake.nix --- flake.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/flake.nix b/flake.nix index 2bb16aa..29d2ab1 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; + }; + }; + } + ]; + }; + }; }