summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/systems/prodesk-server/system.nix18
1 files changed, 17 insertions, 1 deletions
diff --git a/nixos/systems/prodesk-server/system.nix b/nixos/systems/prodesk-server/system.nix
index d994fe5..5c336c0 100644
--- a/nixos/systems/prodesk-server/system.nix
+++ b/nixos/systems/prodesk-server/system.nix
@@ -1,4 +1,4 @@
-{config, ...}: {
+{config, pkgs, ...}: {
imports = [./hardware.nix];
# Configure general settings.
@@ -28,6 +28,22 @@
];
};
+ users.users."alex" = {
+ isNormalUser = true;
+ description = "Alex";
+ password = "alexpassword";
+ packages = with pkgs; [
+ btop
+ zellij
+ helix
+ custom-neovim
+ fzf
+ ];
+ openssh.authorizedKeys.keys = [
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILXgxptRpuZw7GAbaCh+tw4eeAd3/GEOnINEDYlhh9UU ragin@LAPTOP-BB0TF8J5"
+ ];
+ };
+
# Enable features.
features = {
cli = {