This repository has been archived on 2025-07-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
home-manager/lauren_lagarde.nix
2024-10-25 16:21:08 -05:00

12 lines
186 B
Nix

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