diff options
| -rw-r--r-- | common/home/default.nix | 2 | ||||
| -rw-r--r-- | flake.lock | 8 | ||||
| -rw-r--r-- | flake.nix | 6 |
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 ]; @@ -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" }, @@ -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; }; }; |