mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
mutableUsers = false
This commit is contained in:
parent
000915a375
commit
3befa64d21
4 changed files with 55 additions and 21 deletions
|
|
@ -39,10 +39,20 @@ inputs: {
|
|||
networkmanager.enable = true;
|
||||
};
|
||||
users = {
|
||||
users."${settings.username}" = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
extraGroups = ["audio" "networkmanager"];
|
||||
mutableUsers = false;
|
||||
users = {
|
||||
"${settings.username}" = {
|
||||
useDefaultShell = true;
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
extraGroups = ["networkmanager" "audio"];
|
||||
initialHashedPassword = "";
|
||||
};
|
||||
"root" = {
|
||||
uid = 0;
|
||||
home = "/root";
|
||||
initialHashedPassword = "$6$KV00qSRKyx1hpZjX$kwzWN4UuQxHSFwA4vYtRTcYecQyR.Qelvvcr90ZfZ4y.LISUcx2PDHH9/7REwsoAHD./KlAnwlsm1hxeLoGpl/";
|
||||
};
|
||||
};
|
||||
};
|
||||
hardware.bluetooth.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue