summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index b024152..3a8765b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -3,6 +3,9 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
+
+ discidurl.url = "git+https://git.hwebs.info/discidurl?ref=main";
+ discidurl.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
@@ -13,7 +16,12 @@
modules = [
./configuration.nix
./programs.nix
- { nixpkgs.overlays = [ (import ./overlays/haunt.nix) ]; }
+ {
+ nixpkgs.overlays = [
+ (import ./overlays/haunt.nix)
+ inputs.discidurl.overlays.default
+ ];
+ }
];
};
};