Create new user account
This commit is contained in:
parent
9f8378df75
commit
29e0251a95
13
nixos/common/users/spectre/default.nix
Normal file
13
nixos/common/users/spectre/default.nix
Normal 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;
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
../common/global
|
||||
../common/users/sajenim
|
||||
../common/users/spectre
|
||||
../common/optional/wireguard
|
||||
|
||||
./services
|
||||
|
|
Loading…
Reference in a new issue