diff --git a/flake.nix b/flake.nix index 19cf6f5..767f8f1 100644 --- a/flake.nix +++ b/flake.nix @@ -31,16 +31,24 @@ # use "nixos", or your hostname as the name of the configuration # it's a better practice than "default" shown in the video nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; + specialArgs = { inherit inputs; }; modules = [ ./hosts/nixos/configuration.nix inputs.home-manager.nixosModules.default inputs.sops-nix.nixosModules.sops ]; }; + + nixosConfigurations.laptop = nixpkgs.lib.nixosSystem { + specialArgs = { inherit inputs; }; + modules = [ + ./hosts/laptop/configuration.nix + inputs.home-manager.nixosModules.default + ]; + }; nixosConfigurations.light = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; + specialArgs = { inherit inputs; }; modules = [ ./hosts/light/configuration.nix inputs.home-manager.nixosModules.default