flake: add gh-notify to inputs
Some checks failed
Run Checks / check (NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure) (push) Failing after 9s
Run Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Failing after 2s
Run Checks / build (push) Has been skipped

This commit is contained in:
raf 2025-07-21 13:47:03 +03:00
commit 010b57d913
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 23 additions and 1 deletions

BIN
flake.lock generated

Binary file not shown.

View file

@ -60,6 +60,7 @@
"gcolor"
"tailray"
"nh"
"gh-notify"
# 3rd party packages
"wiremix"
@ -74,13 +75,29 @@
in
base // mappedPkgs;
formatter = config.packages.alejandra-custom;
# Formatter that traverses the entire tree and formats Nix files
formatter = pkgs.writeShellApplication {
name = "nix3-fmt-wrapper";
runtimeInputs = [
config.packages.alejandra-custom
pkgs.fd
];
text = ''
fd "$@" -t f -e nix -x alejandra -q '{}'
'';
};
devShells = {
default = pkgs.mkShellNoCC {
name = "nyxexprs";
packages = [pkgs.npins];
};
};
# In case I ever decide to use Hydra.
hydraJobs = self.packages;
};
};
@ -143,6 +160,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
gh-notify = {
url = "github:notashelf/gh-notify";
inputs.nixpkgs.follows = "nixpkgs";
};
# 3rd party flakes that I want to extract packages from
wiremix = {
url = "github:tsowell/wiremix";