boot strapping

This commit is contained in:
2025-02-11 21:43:01 -05:00
parent 6c15bbe0a3
commit ff0f7eba26
25 changed files with 876 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
{ config, ... }:
{
imports = [
./cli
./programs.nix
];
programs = {
home-manager.enable = true;
git.enable = true;
};
home = {
username = "brendan";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables = {
FLAKE = "$HOME/dotfiles";
};
};
}