Compare commits

...

2 Commits

Author SHA1 Message Date
Hunter David Halloran
dbdf65c7bd Update user.nix 2026-01-13 23:23:51 +00:00
UGA Innovation Factory
c538e0c051 use athenix instead of ugaif 2025-12-18 12:13:34 -05:00
2 changed files with 5 additions and 5 deletions

View File

@@ -37,7 +37,7 @@
environment.systemPackages = with pkgs; [
] ++ lib.optional (config.ugaif.sw.type == "desktop") ghostty;
] ++ lib.optional (config.athenix.sw.type == "desktop") ghostty;
# Example: Add user to additional groups
# users.users.myusername.extraGroups = [ "docker" ];

View File

@@ -4,7 +4,7 @@
# User Configuration for hdh20267
# ============================================================================
# This file configures BOTH:
# 1. User account options (ugaif.users.hdh20267)
# 1. User account options (athenix.users.hdh20267)
# 2. Home-manager configuration (home.*, programs.*, services.*)
{
@@ -17,9 +17,9 @@
{
# ========== User Account Configuration ==========
ugaif.users.hdh20267 = {
athenix.users.hdh20267 = {
description = "Hunter Halloran";
shell = pkgs.zsh;
shell = "zsh";
hashedPassword = "!";
opensshKeys = [
@@ -38,7 +38,7 @@
ripgrep
fd
bat
] ++ lib.optional (osConfig.ugaif.sw.type or null == "desktop") ghostty;
] ++ lib.optional (osConfig.athenix.sw.type or null == "desktop") ghostty;
# ========== Programs ==========