adding steve

This commit is contained in:
2026-04-14 20:13:04 -04:00
parent bcc2227cfd
commit 68671a1e84
13 changed files with 204 additions and 3 deletions

View File

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