Merge branch 'main' of github.com:cupcakearmy/nix

This commit is contained in:
2025-07-31 11:11:55 +02:00
5 changed files with 13 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
"utm" "utm"
"balenaetcher" "balenaetcher"
"outerbase-studio" "outerbase-studio"
"hoppscotch"
# Base # Base
"obsidian" "obsidian"

View File

@@ -40,7 +40,7 @@
persistent-apps = [ persistent-apps = [
"/Applications/Zen.app" "/Applications/Zen.app"
"/Applications/Ghostty.app" "/Applications/Ghostty.app"
"/Applications/VSCodium.app" "/Applications/Visual Studio Code.app"
"/Applications/Spotify.app" "/Applications/Spotify.app"
"/System/Applications/System Settings.app" "/System/Applications/System Settings.app"
]; ];

View File

@@ -4,9 +4,12 @@
process = git-lfs filter-process process = git-lfs filter-process
required = true required = true
[core] [core]
pager = delta
excludesfile = ~/.gitignore_global excludesfile = ~/.gitignore_global
autocrlf = input autocrlf = input
ignorecase=false ignorecase=false
[interactive]
diffFilter = delta --color-only
[pull] [pull]
rebase = false rebase = false
@@ -27,3 +30,6 @@
[include] [include]
path = ~/.gitconfig.local path = ~/.gitconfig.local
[delta]
navigate = true

View File

@@ -20,6 +20,7 @@ with pkgs;
woff2 woff2
rsync rsync
yq yq
delta
# Rust utils # Rust utils
bat bat

View File

@@ -15,6 +15,10 @@
pkgs: with pkgs; [ pkgs: with pkgs; [
mkcert mkcert
dnsmasq dnsmasq
awscli2
mysql84
cocoapods
xcodes
]; ];
}; };
} }