From 22bc76a0fc5eda6735fe7711a8afc330fe44e5ca Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Tue, 15 Jul 2025 10:42:32 +0000
Subject: [PATCH] Add smini nix config with modularised config

---
 nixos/user.nix |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/nixos/user.nix b/nixos/user.nix
new file mode 100644
index 0000000..c7c98c1
--- /dev/null
+++ b/nixos/user.nix
@@ -0,0 +1,12 @@
+{ config, libs, pkgs, modulesPath, ... }:
+
+{
+    users.users.joel = {
+    isNormalUser = true;
+    description = "Joel Grunbaum";
+    shell = pkgs.zsh;
+    extraGroups = [ "networkmanager" "wheel" ];
+    openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATFC5gWcw58fSBHwfn+3FoAnxZfJEJH1bCe5cQof0YN joelgrun@gmail.com" ];
+    packages = with pkgs; [];
+  };
+}

--
Gitblit v1.10.0