Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/home/development.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ in {
"Bash(nix show-derivation *)"
"Bash(nix store *)"
"Bash(nix why-depends *)"
"Bash(nix-eval-flake *)"
"Bash(nix-flake *)"
# Git
"Bash(git add *)"
"Bash(git blame *)"
Expand Down
6 changes: 3 additions & 3 deletions modules/home/utilities.nix
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ in {
programs.nix-index-database.comma.enable = true;

home.packages = let
nix-eval-flake = pkgs.writeShellScriptBin "nix-eval-flake" ''
nix eval ".#$1" "''${@:2}"
nix-flake = pkgs.writeShellScriptBin "nix-flake" ''
nix "$1" ".#$2" "''${@:3}"
'';
in
[
nix-eval-flake
nix-flake
pkgs.manix
pkgs.nix-du
pkgs.nix-tree
Expand Down