hackstation config

This commit is contained in:
2026-07-01 19:37:52 +01:00
parent 8b04d1763e
commit 3609e42d8f
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
self,
inputs,
}: {
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
networking.hostName = "HACKSTATION";
};
}

View File

@@ -9,7 +9,14 @@
... ...
}: { }: {
users.users.user01 = { users.users.user01 = {
isNormalUser = true;
initialPassword = "password"; initialPassword = "password";
shell = pkgs.zsh;
description = "user01";
extraGroups = [
"root"
"wheel"
];
}; };
}; };
} }