treewide: upstreaming changes

Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
s0me1newithhand7s 2025-10-24 20:48:35 +03:00
parent d159232b37
commit e4e1b03c7e
No known key found for this signature in database
160 changed files with 3408 additions and 5474 deletions

View file

@ -0,0 +1,5 @@
{...}: {
users = {
mutableUsers = false;
};
}

View file

@ -0,0 +1,23 @@
{...}: {
users = {
users = {
askhat = {
description = "askhat";
isNormalUser = true;
hashedPassword = "$y$j9T$t3G0Vj47wHY86twX2bfwr/$kUajwW8gxtu09z9btWBB7YNEcj1Ut3QfYEazWr7utgC";
extraGroups = [
"wheel"
"docker"
];
openssh = {
authorizedKeys = {
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICfdXRE2ckx++O1lHFcmZlBMN1Sgy3aqSadOdC+ZOLj5 kixoncon33@gmail.com"
];
};
};
};
};
};
}

View file

@ -0,0 +1,15 @@
{...}: {
users = {
users = {
hand7s = {
description = "hands";
isNormalUser = true;
hashedPassword = "$y$j9T$eHfq328GBp7Ga8xsbOTV/0$kcihv7zWLqSkj2jKAhI1pdbTSwvaf2RY5Rokm69XTL/";
extraGroups = [
"wheel"
"docker"
];
};
};
};
}

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
users = {
users = {
root = {
shell = "${pkgs.util-linux}/bin/nologin";
};
};
};
}