Compare commits

..

4 Commits

Author SHA1 Message Date
a11c62c437
Add git insteadOf url for gitlab ssh 2025-07-09 10:00:49 +02:00
a8a693cd95
Add wireshark to mac 2025-07-09 10:00:37 +02:00
0ae905e88f
Add trusted substituters for nixpkgs terraform 2025-07-09 10:00:19 +02:00
8a56ff1571
Add rigrep 2025-07-09 09:59:29 +02:00
3 changed files with 18 additions and 0 deletions

View File

@ -183,6 +183,13 @@ in
nix.settings = {
experimental-features = lib.mkDefault "nix-command flakes";
trusted-substituters = [
"https://nixpkgs-terraform.cachix.org"
];
trusted-public-keys = [
"nixpkgs-terraform.cachix.org-1:8Sit092rIdAVENA3ZVeH9hzSiqI/jng6JiCrQ1Dmusw="
];
};
homebrew = {

View File

@ -96,6 +96,14 @@ in
enable = true;
};
programs.ripgrep = {
enable = true;
arguments = [
"--smart-case"
"--hidden"
];
};
programs.vim = {
enable = true;
settings = {

View File

@ -32,6 +32,7 @@ in
watch
colima
docker
wireshark
];
# ghostty marked as broken as of 2025-01-05 in nix, using homebrew and custom config
@ -100,6 +101,8 @@ in
pull.rebase = false;
init.defaultBranch = "main";
url."ssh://git@gitlab.laputa.veracode.io/".insteadOf = "https://gitlab.laputa.veracode.io/";
};
};