Added a new host in the flake

This commit is contained in:
Alexandre1a 2026-01-16 10:29:08 +01:00
parent c92f658380
commit 660d01994f
No known key found for this signature in database
GPG Key ID: CE01C28FBC5EEF10

View File

@ -31,7 +31,7 @@
# 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
@ -39,8 +39,16 @@
];
};
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