This commit is contained in:
2026-01-18 16:56:35 +03:00
parent 5febe42936
commit 4183f74ff6
2 changed files with 36 additions and 20 deletions
+31
View File
@@ -0,0 +1,31 @@
{
config,
xlib,
pkgs,
...
}:
{
xlib.device.username = "snity";
users = {
users = {
"${xlib.device.username}" = {
name = "${xlib.device.username}";
isNormalUser = true;
group = "users";
description = "Snity";
hashedPasswordFile = "$y$j9T$851xwObfIp7SYzIyFtH.k1$mNofT2sxEAV50Kxgmwvqc6Kj/3B/fJoPP8qgn./siEB"; # hashed_password
homeMode = "700";
home = "/home/${xlib.device.username}";
extraGroups = [
"audio"
"disk"
"gamemode"
"networkmanager"
"pipewire"
"wheel"
];
};
};
};
}