feat(global): refactor configuration by moving settings to minimal.nix

This commit is contained in:
2026-08-26 07:33:31 -04:00
parent f24a14920e
commit a23c91c4ac
2 changed files with 18 additions and 16 deletions
+17
View File
@@ -0,0 +1,17 @@
{ config, ... }:
{
imports = [
./cli
];
programs = {
home-manager.enable = true;
};
home = {
username = "richie";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables.FLAKE = "$HOME/dotfiles";
};
}