Add ykman, duf, and dust

This commit is contained in:
Dave Gallant
2021-06-20 14:15:30 -04:00
parent cd5a33f569
commit 7e068f6125
3 changed files with 14 additions and 9 deletions

12
flake.lock generated
View File

@@ -27,11 +27,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1623623251, "lastModified": 1624175578,
"narHash": "sha256-Aku5PTg4zk+XaiIOvDuRLzQmybGg3StaEmAl/NZlKdU=", "narHash": "sha256-Plybi5jFlYtk9FhnZSjZO+HGsS/piTOz9iR64g1tD6Q=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "25bf3d79531ce45fd36866205bf07a24bb3be2b9", "rev": "a73e619377230ff42529fd99843a8dfcb1f6de5c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -58,11 +58,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1623324058, "lastModified": 1624024598,
"narHash": "sha256-Jm9GUTXdjXz56gWDKy++EpFfjrBaxqXlLvTLfgEi8lo=", "narHash": "sha256-X++38oH5MKEmPW4/2WdMaHQvwJzO8pJfbnzMD7DbG1E=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "432fc2d9a67f92e05438dff5fdc2b39d33f77997", "rev": "33d42ad7cf2769ce6364ed4e52afa8e9d1439d58",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -37,7 +37,7 @@ nnoremap <space> za
vnoremap <C-r> "hy:%s/<C-r>h//g<left><left> vnoremap <C-r> "hy:%s/<C-r>h//g<left><left>
" Custom Commands " Custom Commands
command JsonFormat execute "::%!jq '.'" command! JsonFormat execute "::%!jq '.'"
" Shortcuts " Shortcuts
map <Leader>r :Rg<CR> map <Leader>r :Rg<CR>

View File

@@ -9,6 +9,8 @@ in
common = [ common = [
# utils # utils
curl curl
du-dust
duf
gnupg gnupg
imagemagick imagemagick
pfetch pfetch
@@ -56,7 +58,6 @@ in
ctop ctop
glances glances
htop htop
netdata
procs procs
# data tools # data tools
@@ -90,7 +91,7 @@ in
# imaging # imaging
gifsicle gifsicle
gimp # gimp
# video # video
youtube-dl youtube-dl
@@ -160,6 +161,9 @@ in
# news # news
srv srv
# security
yubikey-manager
] ++ lib.optionals stdenv.isLinux ([ ] ++ lib.optionals stdenv.isLinux ([
albert albert
audio-recorder audio-recorder
@@ -197,6 +201,7 @@ in
teams teams
yuzu yuzu
zoom-us zoom-us
netdata # TODO: Enable launchd support with nix-darwin
]); ]);
in in
common; common;