This repository has been archived on 2025-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/base.nix

13 lines
198 B
Nix

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