Create new user account

This commit is contained in:
♥ Minnie ♥ 2024-06-03 21:07:39 +08:00
parent 9f8378df75
commit 29e0251a95
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ inputs, pkgs, ... }:
{
imports = [
inputs.home-manager.nixosModules.home-manager
];
users.users.spectre = {
isNormalUser = true;
shell = pkgs.zsh;
hashedPassword = "$y$j9T$eCJ0MDPsx3tww9LP0LU8..$sE8u5keO7QNKNAR1t2R6GqsDzvGD0Xn9Fi3to14Gf9/";
};
users.mutableUsers = false;
}

View file

@ -4,6 +4,7 @@
imports = [
../common/global
../common/users/sajenim
../common/users/spectre
../common/optional/wireguard
./services