nixos-config/hosts/20212060/configuration.nix
Jan-Bulthuis 5e23488cae Progress
2025-05-13 14:26:22 +02:00

21 lines
300 B
Nix

{ flake, ... }:
{
# State version
system.stateVersion = "24.05";
# Machine hostname
networking.hostName = "20212060";
# Admin users
users.users.jan.extraGroups = [ "wheel" ];
modules = {
profiles.laptop.enable = true;
};
imports = [
./hardware-configuration.nix
];
}