summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-03-11 09:08:32 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2026-03-11 09:08:32 +0100
commitc44e853f0a71b56cc0a2d66b55ed12fc1fa38048 (patch)
tree0e6e94ff426bb7b53749bd59eba4351674b3ee7f
parent073f516d74404bc77e056204ce3510fd391c54f1 (diff)
webtray: update
-rw-r--r--common/home/default.nix2
-rw-r--r--flake.lock8
-rw-r--r--flake.nix6
3 files changed, 9 insertions, 7 deletions
diff --git a/common/home/default.nix b/common/home/default.nix
index bad950a..fbd3204 100644
--- a/common/home/default.nix
+++ b/common/home/default.nix
@@ -64,7 +64,7 @@ packages = [
pkgs.xonotic
pkgs.transmission_4-gtk
pkgs.libreoffice
- pkgs.unstable.superTuxKart
+ pkgs.unstable.supertuxkart
pkgs.krita
pkgs.uxplay
];
diff --git a/flake.lock b/flake.lock
index da4ff85..6090691 100644
--- a/flake.lock
+++ b/flake.lock
@@ -214,11 +214,11 @@
]
},
"locked": {
- "lastModified": 1764670403,
- "narHash": "sha256-vi8J4kOAiZyY27Itqu4ahI5XJcefv82+P/TVwmVu15k=",
+ "lastModified": 1773216018,
+ "narHash": "sha256-TnxjNNv9h2hyMLUDjkAqE8NYZ8FwADJqAiXKg/wYDrs=",
"ref": "refs/heads/master",
- "rev": "e57244bd33c08d010bbec03b7cc90e254efccae9",
- "revCount": 48,
+ "rev": "558f6cf92b9c9d3cd3ff8f36c49de11dd99d20ca",
+ "revCount": 49,
"type": "git",
"url": "https://git.nathanreiner.xyz/webtray"
},
diff --git a/flake.nix b/flake.nix
index b729b62..d2f93c4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,10 +26,12 @@
{ nixpkgs, nixpkgs-unstable, webtray, ... }@attrs:
let
system = "x86_64-linux";
- pkgs = import nixpkgs { inherit system; };
+ pkgs = import nixpkgs {
+ stdenv.hostPlatform = { inherit system; };
+ };
overlay-unstable = final: prev: {
unstable = import nixpkgs-unstable {
- inherit system;
+ system = prev.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
};