diff options
Diffstat (limited to 'hosts/nara/configuration.nix')
| -rw-r--r-- | hosts/nara/configuration.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/hosts/nara/configuration.nix b/hosts/nara/configuration.nix new file mode 100644 index 0000000..24b8df4 --- /dev/null +++ b/hosts/nara/configuration.nix @@ -0,0 +1,41 @@ +{ inputs, pkgs, ... }: +{ + system.stateVersion = 5; + + environment.systemPackages = with pkgs; [ + nixd + nixfmt-rfc-style + nil + just + ]; + + homebrew = { + enable = true; + + brews = [ + "swiftlint" + "gpg" + "pinentry-mac" + ]; + + casks = [ + "alt-tab" + "iina" + "aerospace" + ]; + }; + + nix-homebrew = { + enable = true; + enableRosetta = true; + user = "ebisu"; + mutableTaps = false; + + taps = with inputs; { + "homebrew/homebrew-core" = homebrew-core; + "homebrew/homebrew-cask" = homebrew-cask; + "homebrew/homebrew-bundle" = homebrew-bundle; + "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap; + }; + }; +} |