Add exa, qwpgraph

This commit is contained in:
Artemis Tosini 2023-07-28 15:58:48 +00:00
parent 5196a6b017
commit 7ca8cd0c8f
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
4 changed files with 15 additions and 11 deletions

View file

@ -23,11 +23,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1689060619, "lastModified": 1690200740,
"narHash": "sha256-vODUkZLWFVCvo1KPK3dC2CbXjxa9antEn5ozwlcTr48=", "narHash": "sha256-aRkEXGmCbAGcvDcdh/HB3YN+EvoPoxmJMOaqRZmf6vM=",
"owner": "nixos", "owner": "nixos",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "44bc025007e5fcc10dbc3d9f96dcbf06fc0e8c1c", "rev": "ba9650b14e83b365fb9e731f7d7c803f22d2aecf",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -38,11 +38,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1689137672, "lastModified": 1690470004,
"narHash": "sha256-QZoHxr0a73x6rQcAo5CiwYpysHbSnk7lAR8/16um7mM=", "narHash": "sha256-l57RmPhPz9r1LGDg/0v8bYgJO8R+GGTQZtkIxE7negU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "98da3dd0de6660d4abed7bb74e748694bd803413", "rev": "9462344318b376e157c94fa60c20a25b913b2381",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -54,11 +54,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1689098530, "lastModified": 1690367991,
"narHash": "sha256-fxc/9f20wRyo/5ydkmZkX/Sh/ULa7RcT8h+cUv8p/44=", "narHash": "sha256-2VwOn1l8y6+cu7zjNE8MgeGJNNz1eat1HwHrINeogFA=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f2406198ea0e4e37d4380d0e20336c575b8f8ef9", "rev": "c9cf0708f00fbe553319258e48ca89ff9a413703",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -5,6 +5,7 @@
interactiveShellInit = "set -g -x GPG_TTY (tty)"; interactiveShellInit = "set -g -x GPG_TTY (tty)";
shellAliases = { shellAliases = {
cat = "bat"; cat = "bat";
ls = "exa";
cp = "cp --reflink=auto --sparse=always"; cp = "cp --reflink=auto --sparse=always";
nix-fish = "nix-shell --command fish"; nix-fish = "nix-shell --command fish";
}; };

View file

@ -40,7 +40,6 @@
# Useful CLI tools # Useful CLI tools
appimage-run appimage-run
bat
bind bind
borgbackup borgbackup
file file
@ -73,6 +72,10 @@
xxd xxd
zip zip
# Coreutils replacements
bat
exa
# Networking # Networking
curlFull curlFull
iw iw

View file

@ -14,6 +14,6 @@
security.rtkit.enable = true; security.rtkit.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
pulseaudio pulseaudio
qjackctl qpwgraph
]; ];
} }