nixos-config/hosts/20212060/configuration.nix
2025-05-18 15:01:05 +02:00

23 lines
342 B
Nix

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