Initial commit

This commit is contained in:
Inex Code
2021-11-15 13:02:05 +03:00
commit 85aaf52635
28 changed files with 1360 additions and 0 deletions

12
users.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, config, ... }:
{
users.mutableUsers = false;
users = {
users = {
"${config.services.userdata.username}" = {
isNormalUser = true;
hashedPassword = config.services.userdata.hashedMasterPassword;
};
};
};
}