diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 19:54:20 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 19:54:20 +0200 |
| commit | 0f68823dd92bf809d6449d6bc8f8a89d40faeafb (patch) | |
| tree | d07b18a8942cf4e4845bae8ab87aaa892ffcf335 | |
| parent | 558f6cf92b9c9d3cd3ff8f36c49de11dd99d20ca (diff) | |
| -rw-r--r-- | flake.lock | 6 | ||||
| -rw-r--r-- | flake.nix | 3 |
2 files changed, 5 insertions, 4 deletions
@@ -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": { @@ -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; |