24 lines
349 B
Nix
24 lines
349 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(import ../base.nix { inherit inputs outputs; })
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
users.users = {
|
|
leonhard = {
|
|
initialPassword = "leonhard";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
};
|
|
};
|
|
|
|
networking.hostName = "server";
|
|
|
|
kekleo.graphical = false;
|
|
}
|