aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index f4267af..2624c00 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,7 +8,8 @@
outputs =
{ self, nixpkgs }:
let
- pkgs = import nixpkgs { system = "x86_64-linux"; };
+ localSystem = { system = "x86_64-linux"; };
+ pkgs = import nixpkgs { inherit localSystem; };
in
{
packages.x86_64-linux.default = self.packages.x86_64-linux.webtray;