(mirror) personal dotfiles
github.com/crescentrose/dotfiles
1{
2 # Only options supported by both macOS and Linux should go here.
3 # Others should go in the respective `_work` or `_home` files.
4
5 # Disable Richard Stallman
6 nixpkgs.config.allowUnfree = true;
7
8 programs = {
9 # Home Manager manages itself
10 home-manager.enable = true;
11
12 # keep per-project shell configs
13 direnv = {
14 enable = true;
15 nix-direnv.enable = true;
16 };
17 };
18
19 home.stateVersion = "25.11";
20}