26 lines
630 B
Nix
26 lines
630 B
Nix
# ============================================================================
|
|
# User Configuration for hdh20267
|
|
# ============================================================================
|
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
let
|
|
# Evaluate package references immediately in the function scope
|
|
zshPackage = pkgs.zsh;
|
|
homeConfig = ./home.nix;
|
|
in
|
|
{
|
|
description = "HDH";
|
|
shell = zshPackage;
|
|
hashedPassword = "!";
|
|
|
|
opensshKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBC7xzHxY2BfFUybMvG4wHSF9oEAGzRiLTFEndLvWV/X hdh20267@engr733847d.engr.uga.edu"
|
|
];
|
|
|
|
home = homeConfig;
|
|
|
|
useZshTheme = true;
|
|
useNvimPlugins = true;
|
|
}
|