diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-10-25 14:59:26 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-10-25 14:59:26 -0700 |
commit | 762979e902319b2bfad21978f09591cd0d1cd371 (patch) | |
tree | 0f4f2b865d339b28db6965f2b599b8400c8d3223 | |
parent | 79413a7fc41f879c61515a983f6a1ab0ee752e66 (diff) | |
download | nix-762979e902319b2bfad21978f09591cd0d1cd371.tar nix-762979e902319b2bfad21978f09591cd0d1cd371.tar.gz nix-762979e902319b2bfad21978f09591cd0d1cd371.tar.bz2 nix-762979e902319b2bfad21978f09591cd0d1cd371.tar.lz nix-762979e902319b2bfad21978f09591cd0d1cd371.tar.xz nix-762979e902319b2bfad21978f09591cd0d1cd371.tar.zst nix-762979e902319b2bfad21978f09591cd0d1cd371.zip |
Add useful nix aliases for nipsy
-rw-r--r-- | home/nipsy/common/core/zsh/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/home/nipsy/common/core/zsh/default.nix b/home/nipsy/common/core/zsh/default.nix index b2d20da..831faf4 100644 --- a/home/nipsy/common/core/zsh/default.nix +++ b/home/nipsy/common/core/zsh/default.nix @@ -39,6 +39,8 @@ export PASSWORD_STORE_ENABLE_EXTENSIONS=true la = "ls -aF --color=auto"; ll = "ls -alFhs --color=auto"; lock = "xscreensaver-command -lock"; + nix-list-derivations = "nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq"; + nix-list-generations = "nixos-rebuild list-generations"; steam-no-beta = "steam -clearbeta"; zgrep = "zgrep --color=auto"; }; |