feat: set mutableUsers to false and set hashedPassword for all users
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
356b1c40ef
commit
7d40542d66
8 changed files with 26 additions and 0 deletions
|
@ -26,6 +26,9 @@
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$OSui2t4Ol8HKY2E09k4Wl/$fv6kORhiLzbh7kaoAxAS1FypQD1VYjTUYhblwUJrcS8";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"adm"
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$uCv3kB5LI3Shj/5liU9cS0$4s3wWoH4iY29DLC3lJwNaIcurcjsj8L02cMY4EDtnC6";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"input"
|
||||
|
|
|
@ -29,6 +29,12 @@ in {
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword =
|
||||
if deviceName == "thingone"
|
||||
then "$y$j9T$H.Uu5T7k5OLomqiPtFkVX0$ojaLWjxi.MDjxY00rT5r2dhJkt.9h.pXHgOtlhf3sN/"
|
||||
else "$y$j9T$dXC7oiLsG7fCBXS1HUxo21$JjDm17jEwM41gnjMUaFdvgSzWXoGYQbqm867VtDAjF7";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"adm"
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$CBC0wX9ZrZeXE296CWTvK.$xTJE54Pd4EPrv/Q4TQ42ahIDXQYoavcnwcsItw0hk.B";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"adm"
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$DSLWphPlpiahIw7KQciF1/$FOjIbplU1Fknv5W.A15Xgdk.WNXP.zeWkJiewSUTGPC";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"adm"
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
users.users = {
|
||||
${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$723InNIdzpJ1.TqxroiXa0$thewApg1l3lpgq.qAwh3k0c/.fu1H1TWRyA8dfjvpP0";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"adm"
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
# ------------------------------------------------
|
||||
users.users.${mainUser} = {
|
||||
isNormalUser = true;
|
||||
|
||||
hashedPassword = "$y$j9T$ZwnaqAzFjKB/1oJSvypdt.$CtQzgoUWxNutP1DsTBrFHXiTGP6JJp/bMchl1VaADSA";
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"input"
|
||||
|
|
|
@ -116,6 +116,8 @@ in {
|
|||
;
|
||||
};
|
||||
|
||||
users.mutableUsers = false;
|
||||
|
||||
home-manager.users = let
|
||||
default = {
|
||||
imports = [
|
||||
|
|
Loading…
Add table
Reference in a new issue