aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-06-06 19:54:20 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-06-06 19:54:20 +0200
commit0f68823dd92bf809d6449d6bc8f8a89d40faeafb (patch)
treed07b18a8942cf4e4845bae8ab87aaa892ffcf335
parent558f6cf92b9c9d3cd3ff8f36c49de11dd99d20ca (diff)
fix flakeHEADmaster
-rw-r--r--flake.lock6
-rw-r--r--flake.nix3
2 files changed, 5 insertions, 4 deletions
diff --git a/flake.lock b/flake.lock
index 7889e5a..1022845 100644
--- a/flake.lock
+++ b/flake.lock
@@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
- "lastModified": 1772963539,
- "narHash": "sha256-9jVDGZnvCckTGdYT53d/EfznygLskyLQXYwJLKMPsZs=",
+ "lastModified": 1780243769,
+ "narHash": "sha256-x5UQuRsH3MqI0U9afaXSNqzTPSeZlRLvFAav2Ux1pNw=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "9dcb002ca1690658be4a04645215baea8b95f31d",
+ "rev": "331800de5053fcebacf6813adb5db9c9dca22a0c",
"type": "github"
},
"original": {
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;