This commit is contained in:
2026-07-29 13:59:12 +01:00
commit 072d97d290
13 changed files with 2173 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
self,
inputs,
...
}: {
flake.nixosModules.user = {
pkgs,
lib,
inputs',
...
}: let
in {
users.users.user01 = {
isNormalUser = true;
initialPassword = "password";
shell = inputs'.nix-config.packages.zsh;
description = "user01";
extraGroups = [
"root"
"wheel"
];
};
};
}