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