diff options
Diffstat (limited to 'home/profiles/darwin.nix')
| -rw-r--r-- | home/profiles/darwin.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/home/profiles/darwin.nix b/home/profiles/darwin.nix new file mode 100644 index 0000000..4575176 --- /dev/null +++ b/home/profiles/darwin.nix @@ -0,0 +1,33 @@ +{ config, pkgs, ... }: +{ + home.stateVersion = "23.05"; + + imports = [ + ./git.nix + ./zsh.nix + ./dev.nix + ./tmux.nix + ]; + + home.packages = with pkgs; [ + jq + direnv + nix-direnv + tree + nixfmt + nixpkgs-fmt + rnix-lsp + ]; + + programs = { + direnv = { + enable = true; + nix-direnv.enable = true; + enableZshIntegration = true; + config = { + global.disable_stdin = true; + global.strict_env = true; + }; + }; + }; +} |
