From 6fa37babe08b75b52fc98de459fa0e8dfeccf1a9 Mon Sep 17 00:00:00 2001 From: Hunter Halloran Date: Wed, 17 Dec 2025 12:38:38 -0500 Subject: [PATCH] Add user configuration --- default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..a8d6ff5 --- /dev/null +++ b/default.nix @@ -0,0 +1,28 @@ +# ============================================================================ +# User Configuration for hdh20267 +# ============================================================================ +# This file defines the user account configuration that will be merged into +# the NixOS system's ugaif.users namespace. + +{ inputs, pkgs, ... }: + +{ + # ========== User Metadata ========== + + description = "HDH"; + shell = pkgs.zsh; + hashedPassword = "!"; + + opensshKeys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBC7xzHxY2BfFUybMvG4wHSF9oEAGzRiLTFEndLvWV/X hdh20267@engr733847d.engr.uga.edu" + ]; + + # ========== External Home Configuration ========== + + home = ./home.nix; + + # ========== Additional ugaif Options ========== + + useZshTheme = true; + useNvimPlugins = true; +}