fix infinite recursion by namespacing new pkgs

This commit is contained in:
Noah Masur
2025-02-24 21:14:38 -05:00
parent 3206b48f28
commit e7366f9510
13 changed files with 31 additions and 19 deletions

View File

@ -1,5 +1,6 @@
{
config,
pkgs,
lib,
...
}:
@ -43,7 +44,7 @@ in
body = builtins.readFile ./functions/fish_user_key_bindings.fish;
};
ip = {
body = builtins.readFile ./functions/ip.fish;
body = lib.getExe pkgs.nmasur.ip-check;
};
json = {
description = "Tidy up JSON using jq";

View File

@ -20,7 +20,7 @@ in
gitCredentialHelper.enable = true;
settings.git_protocol = "https";
extensions = [
pkgs.gh-collaborators
pkgs.nmasur.gh-collaborators
pkgs.gh-dash
pkgs.gh-copilot
];

View File

@ -47,7 +47,7 @@ in
pkgs.ponymix
rofi
];
text = builtins.readFile ./rofi/pulse-sink.sh;
text = builtins.readFile ./pulse-sink.sh;
}
);
};