Regenerated
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
{
|
||||
username = "henrov";
|
||||
hashedPassword = "$6$ISAmsPLyFi7idYXr$VmZsq.zMsyh1irSkyDNqtorNXG0oEHbbMVqTii1t8bymvrQ5ZQmbdi4OiBNeNYe/huHGrojXM.3TST2fTLz0T.";
|
||||
homeDirectory = "/home/henrov";
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
user = import ./henrov.nix;
|
||||
in
|
||||
{
|
||||
users.users.${user.username} = {
|
||||
isNormalUser = true;
|
||||
home = user.homeDirectory;
|
||||
hashedPassword = user.hashedPassword;
|
||||
extraGroups = [ "wheel" "networkmanager" ];
|
||||
};
|
||||
|
||||
home-manager.users.${user.username} = {
|
||||
home.stateVersion = "26.05";
|
||||
home.username = user.username;
|
||||
home.homeDirectory = user.homeDirectory;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user