fix: change default user to infinidoge
This commit is contained in:
parent
f60ae84a8c
commit
218d57fda3
3 changed files with 17 additions and 1 deletions
|
@ -138,6 +138,10 @@
|
|||
nixos = { suites, ... }: { imports = suites.base; };
|
||||
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
||||
};
|
||||
users = {
|
||||
infinidoge = { suites, ... }: { imports = suites.base; };
|
||||
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
||||
};
|
||||
|
||||
devshell = ./shell;
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
# profiles.networking
|
||||
profiles.core
|
||||
profiles.users.root # make sure to configure ssh keys
|
||||
profiles.users.nixos
|
||||
profiles.users.infinidoge
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
|
12
users/infinidoge/default.nix
Normal file
12
users/infinidoge/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ hmUsers, ... }: {
|
||||
home-manager.users = { inherit (hmUsers) infinidoge; };
|
||||
|
||||
users.users.infinidoge = {
|
||||
uid = 1000;
|
||||
hashedPassword =
|
||||
"PASSWORD SET IN THE FUTURE";
|
||||
description = "Infinidoge";
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue