summaryrefslogtreecommitdiff
path: root/hosts/lia/modules
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-02-05 13:20:07 +0530
committersinanmohd <sinan@sinanmohd.com>2024-02-05 21:58:22 +0530
commit467dc80d65f33cd1d5d2515c84c9ad0297151315 (patch)
treee3302b982286c0c568c9fac7557b2ffd20ac6123 /hosts/lia/modules
parentf6fe3159a5bf02d1355dc7fc49c4648948888f48 (diff)
lia/users/rohit: initial conf
Diffstat (limited to 'hosts/lia/modules')
-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" ];
};
}