21 lines
300 B
Nix
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
|
|
];
|
|
}
|