From e9fa4d533f9538575df0a8442eeee982961f86ff Mon Sep 17 00:00:00 2001 From: smayzy Date: Sun, 29 Jun 2025 15:30:28 +0200 Subject: [PATCH] add laptop1 in flake --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index 7f9563a..5ee2916 100644 --- a/flake.nix +++ b/flake.nix @@ -39,6 +39,15 @@ nvf.nixosModules.default ]; }; + laptop1 = nixpkgs.lib.nixosSystem { + specialArgs = { inherit inputs system; }; + modules = [ + ./hosts/laptop1/configuration.nix + nix-flatpak.nixosModules.nix-flatpak + inputs.stylix.nixosModules.stylix + nvf.nixosModules.default + ]; + }; }; };