config.nix/hosts/marty-server/default.nix
2026-04-26 22:32:05 +02:00

26 lines
412 B
Nix

{
config,
lib,
pkgs,
modulesPath,
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 = "25.11"; # Did you read the comment?
}