diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-12-12 08:39:55 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-12-12 08:39:55 +0900 |
| commit | ebc67bb8ada03750eee60ab58c945b4745f22af1 (patch) | |
| tree | 53831db9621fe77261582c272155b701a9845ec5 /flake.nix | |
| parent | e60ff660f69ee4161ee63af3147b5a77d4139e76 (diff) | |
nix: update flake lock
NixOS 25.11 introduces a crash in cage and an intermittent crash in foot.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,10 +2,10 @@ description = "hakurei container tool and nixos module"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; home-manager = { - url = "github:nix-community/home-manager/release-25.05"; + url = "github:nix-community/home-manager/release-25.11"; inputs.nixpkgs.follows = "nixpkgs"; }; }; @@ -185,13 +185,13 @@ hakurei = let # this is used for interactive vm testing during development, where tests might be broken - package = self.packages.${pkgs.system}.hakurei.override { + package = self.packages.${pkgs.stdenv.hostPlatform.system}.hakurei.override { buildGoModule = previousArgs: pkgs.pkgsStatic.buildGoModule (previousArgs // { doCheck = false; }); }; in { inherit package; - hsuPackage = self.packages.${pkgs.system}.hsu.override { hakurei = package; }; + hsuPackage = self.packages.${pkgs.stdenv.hostPlatform.system}.hsu.override { hakurei = package; }; }; }; } |
