summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 8b72e7b..408e1d4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -23,7 +23,7 @@
};
outputs =
- { nixpkgs, nixpkgs-unstable, ... }@attrs:
+ { nixpkgs, nixpkgs-unstable, webtray, ... }@attrs:
let
system = "x86_64-linux";
overlay-unstable = final: prev: {
@@ -41,7 +41,7 @@
(
{ ... }:
{
- nixpkgs.overlays = [ overlay-unstable ];
+ nixpkgs.overlays = [ overlay-unstable webtray.overlays.default ];
nixpkgs.config.allowUnfree = true;
}
)