From 660d01994f806bc3845db1878d97403dea922210 Mon Sep 17 00:00:00 2001 From: Alexandre1a Date: Fri, 16 Jan 2026 10:29:08 +0100 Subject: [PATCH] Added a new host in the flake --- flake.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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