From 3ebf01c47e2d5f534da22fa0637ce254edf77ffa Mon Sep 17 00:00:00 2001 From: foxora Date: Fri, 13 Mar 2026 18:22:44 +0000 Subject: [PATCH] made smol changes :3 --- groups/all/default.nix | 2 +- homes/modules/shell/zsh.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/groups/all/default.nix b/groups/all/default.nix index 3f035f8..dda6503 100644 --- a/groups/all/default.nix +++ b/groups/all/default.nix @@ -1,6 +1,6 @@ {...}: { nix.settings = { - experimental-features = ["nix-command" "flakes"]; + experimental-features = ["nix-command" "flakes" "pipe-operators"]; download-buffer-size = 524288000; }; } diff --git a/homes/modules/shell/zsh.nix b/homes/modules/shell/zsh.nix index db2c986..a4758ec 100644 --- a/homes/modules/shell/zsh.nix +++ b/homes/modules/shell/zsh.nix @@ -56,7 +56,7 @@ # open nix develop with preferred shell # description: nd = nix develop - nd = "nix develop -c $SHELL"; + nd = "./flake.sh -c $SHELL || nix develop -c $SHELL"; # description: cdns = change directory [to] nix settings cdns = "cd ~/.nix";