nixos-config/hosts/20212060/configuration.nix

21 lines
300 B
Nix
Raw Normal View History

2025-05-13 14:26:22 +02:00
{ 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
];
}