summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/lia/modules/users.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/lia/modules/users.nix b/hosts/lia/modules/users.nix
index 0161e0b..13617ff 100644
--- a/hosts/lia/modules/users.nix
+++ b/hosts/lia/modules/users.nix
@@ -1,5 +1,10 @@
-{ ... }: {
+{ pkgs, ... }: {
users.users."rohit" = {
isNormalUser = true;
+ extraGroups = [ "wheel" ];
+
+ packages = with pkgs; [ git htop ];
+ openssh.authorizedKeys.keys =
+ [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOZcWF1zVyxsCdZ/j+h+RlHZlyhgY2Bky03847bxFNSH rohit@victus" ];
};
}