config.nix/hosts/marty-thinkpad/default.nix
2026-04-11 17:21:28 +02:00

27 lines
399 B
Nix

{
config,
lib,
pkgs,
home-manager,
inputs,
...
}:
{
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
users = {
"${config.user.userName}" = import ./home.nix;
};
};
imports = [
./hardware.nix
./custom.nix
./options.nix
];
system.stateVersion = "24.11"; # Did you read the comment?
}