Initial commit

This commit is contained in:
Lauren Lagarde 2024-10-25 16:21:08 -05:00
commit a1e0d5cff6
19 changed files with 1400 additions and 0 deletions

12
lauren_lagarde.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
home.stateVersion = "24.05";
# Self-hosting
programs.bash.enable = true;
programs.home-manager.enable = true;
imports = [
./vim.nix
./gpg.nix
];
}