feat: initial commit

This commit is contained in:
2024-11-23 21:35:39 +01:00
commit 28590f35e1
11 changed files with 273 additions and 0 deletions

9
users/leona/default.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }: {
users.users.leona = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOkvy9P1Qweq1kykgn3IWIBWe/v/dTNAx+hd9i2aKe1O openpgp:0xCACA6CB6"
];
};
}