mirror of
https://github.com/hyprwm/hyprland-infra.git
synced 2025-05-12 21:30:36 +01:00
users: quote usernames
This commit is contained in:
parent
c54ca08de6
commit
a4f963b125
2 changed files with 4 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
|||
{lib, ...}: let
|
||||
userLib = import ./lib.nix {inherit lib;};
|
||||
in {
|
||||
users.users.mihai = {
|
||||
users.users."mihai" = {
|
||||
uid = userLib.mkUid "mihi";
|
||||
openssh.authorizedKeys.keyFiles = [./keys/mihai];
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"trusted"
|
||||
];
|
||||
uid = userLib.mkUid "mihi";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{lib, ...}: let
|
||||
userLib = import ./lib.nix {inherit lib;};
|
||||
in {
|
||||
users.users.mihai = {
|
||||
users.users."raf" = {
|
||||
uid = userLib.mkUid "rafi";
|
||||
openssh.authorizedKeys.keyFiles = [./keys/raf];
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"trusted"
|
||||
];
|
||||
uid = userLib.mkUid "rafi";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue