diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-09-14 17:18:09 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-09-14 17:36:58 -0700 |
| commit | 17a8f86782b773c77880e34b6a02e53def4015e8 (patch) | |
| tree | ee611470d040b90331865b7e519b7e737ea70c29 /home/profiles/darwin.nix | |
| parent | build(deps): bump cachix/install-nix-action from 22 to 23 (#2) (diff) | |
| download | infra-17a8f86782b773c77880e34b6a02e53def4015e8.tar.gz | |
more configuration for darwin
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; + }; + }; + }; +} |
