add laptop version

This commit is contained in:
afoucaultc 2026-07-03 21:56:32 +02:00
parent 0ba7bf856f
commit c7db34c243
729 changed files with 286689 additions and 18 deletions

View file

@ -48,5 +48,21 @@
}
];
};
# ── ThinkPad E560 (i5-6200U, HD 520, 4 Gio RAM) : profil léger ──
nixosConfigurations.nixos-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/nixos-laptop/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users.afoucaultc = import ./home/afoucaultc/home-laptop.nix;
}
];
};
};
}