config: added name and home directory options

This commit is contained in:
Devyn Freet
2026-07-10 23:04:36 -04:00
parent ae93a6803d
commit c1f029289c
2 changed files with 12 additions and 2 deletions
+5 -2
View File
@@ -2,8 +2,8 @@
{ pkgs, config, ... }:
let
name = "${config.home.username}";
homeDir = "${config.home.homeDirectory}";
name = "${config.name}";
homeDir = "${config.homeDirectory}";
myAliases = {
ll = "ls -hl";
la = "ls -ahl";
@@ -18,6 +18,9 @@ let
};
in
{
imports = [
./options.nix
];
home = {
stateVersion = "26.05";
sessionVariables = {