first commit

This commit is contained in:
2026-06-24 20:20:23 +02:00
commit 8fc0d08dbc
77 changed files with 5688 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
users.users.user = {
isNormalUser = true;
createHome = true;
home = "/home/user";
extraGroups =
[
"users" "wheel" "root"
"plugdev" "dialout" "input"
"network" "disk" "cdrom"
"video" "audio" "scanner"
];
};
}