zsh: Ignore all dependencies

This commit is contained in:
Spotlight 2023-09-09 14:58:19 -05:00
parent a3f3d9e4a6
commit a5a1dec30b
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
3 changed files with 10 additions and 8 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1693646047, "lastModified": 1694134858,
"narHash": "sha256-VsuXtCGOhrzp1qb1CSoV/cO+5f+GPtA4J/SFYqqLyfo=", "narHash": "sha256-fG/ESauOGmiojKlpJG8gB62dJa5Wd+ZIuiDMKK/HD3g=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "fae8af43e201a8929ce45a5ea46192bbd1ffff18", "rev": "19c6a4081b14443420358262f8416149bd79561a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1693565476, "lastModified": 1693985761,
"narHash": "sha256-ya00zHt7YbPo3ve/wNZ/6nts61xt7wK/APa6aZAfey0=", "narHash": "sha256-K5b+7j7Tt3+AqbWkcw+wMeqOAWyCD1MH26FPZyWXpdo=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "aa8aa7e2ea35ce655297e8322dc82bf77a31d04b", "rev": "0bffda19b8af722f8069d09d8b6a24594c80b352",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -13,6 +13,7 @@
dmg2img dmg2img
exiftool exiftool
ffmpeg ffmpeg
gcc-arm-embedded
go go
google-cloud-sdk google-cloud-sdk
gradle gradle
@ -45,6 +46,7 @@
wget wget
xz xz
yt-dlp yt-dlp
zola
]; ];
# GPG # GPG

View file

@ -17,7 +17,7 @@ in {
# We want several options: # We want several options:
autocd = true; autocd = true;
history = { history = {
ignoreDups = true; ignoreAllDups = true;
ignoreSpace = true; ignoreSpace = true;
}; };
@ -43,7 +43,7 @@ in {
file = "p10k.zsh"; file = "p10k.zsh";
} }
]; ];
# We use powerlevel10k as our ZSH theme. # We use powerlevel10k as our ZSH theme.
# By using the derivation in nixpkgs, we also get gitstatusd. # By using the derivation in nixpkgs, we also get gitstatusd.
# The .p10k.zsh config is beneath. # The .p10k.zsh config is beneath.