-lsd +eza | firefox sidebery | devshell upd

This commit is contained in:
Your Name 2024-05-08 18:27:51 +03:00
parent 5e55a6704e
commit 867aa72e7d
4 changed files with 6 additions and 10 deletions

2
.envrc
View file

@ -1 +1 @@
use nix use flake

View file

@ -172,6 +172,7 @@ in {
(extension "unpaywall" "{f209234a-76f0-4735-9920-eb62507a54cd}") (extension "unpaywall" "{f209234a-76f0-4735-9920-eb62507a54cd}")
(extension "ctrl-number-to-switch-tabs" "{84601290-bec9-494a-b11c-1baa897a9683}") (extension "ctrl-number-to-switch-tabs" "{84601290-bec9-494a-b11c-1baa897a9683}")
(extension "temporary-containers" "{c607c8df-14a7-4f28-894f-29e8722976af}") (extension "temporary-containers" "{c607c8df-14a7-4f28-894f-29e8722976af}")
(extension "sidebery" "{609f7ec1-8818-4aa3-87ed-f40c1749e4d3}")
]; ];
}; };
}; };

View file

@ -120,9 +120,11 @@ in {
rebuild = "nh os switch"; rebuild = "nh os switch";
rollback = "sudo nixos-rebuild switch --rollback --flake ~/Documents/dotfiles/"; rollback = "sudo nixos-rebuild switch --rollback --flake ~/Documents/dotfiles/";
haste = "HASTE_SERVER='https://haste.schizoposting.online' ${pkgs.haste-client}/bin/haste"; haste = "HASTE_SERVER='https://haste.schizoposting.online' ${pkgs.haste-client}/bin/haste";
ls = "${pkgs.lsd}/bin/lsd"; # ls = "${pkgs.lsd}/bin/lsd";
ls = "${pkgs.eza}/bin/exa --icons";
ltree = "${pkgs.eza}/bin/exa --icons --tree";
# ltree = "${pkgs.lsd}/bin/lsd --tree";
search = "nix-search -d -m 5 -p"; search = "nix-search -d -m 5 -p";
ltree = "${pkgs.lsd}/bin/lsd --tree";
unpack = "aunpack"; unpack = "aunpack";
where = "which"; where = "which";
c = "cd"; c = "cd";

View file

@ -1,7 +0,0 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
name = "delta";
packages = with pkgs; [ gitleaks pre-commit ];
shellHook = "pre-commit install &> /dev/null && gitleaks detect -v";
}