feat: add config for new device

This commit is contained in:
2026-01-31 13:42:01 +01:00
parent 39da2abe9c
commit af8d71cc70
5 changed files with 66 additions and 28 deletions
+21
View File
@@ -0,0 +1,21 @@
{
inputs,
outputs,
...
}:
{
imports = [
(import ../base.nix { inherit inputs outputs; })
./hardware-configuration.nix
];
users.users = {
leonhard = {
initialPassword = "leonhard";
isNormalUser = true;
extraGroups = [ "wheel" ];
};
};
networking.hostName = "server";
}