aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-06-05 09:53:15 +0900
committerOphestra <cat@gensokyo.uk>2026-06-06 13:14:09 +0900
commit7eafc7b1e4b895d1986280e192aa8d493fff8d96 (patch)
tree005e7664004cb9ee7ea9ecf7de02a3d4fed4a982 /flake.nix
parent282462c2f0d4e057e0714013f3f370af41a3d3f6 (diff)
nix: update flake lock
Was unfortunately not able to implement vm test suite before this release. Hopefully the last nixos update we have to follow. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 09520be2..92548b40 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,10 +2,10 @@
description = "hakurei container tool and nixos module";
inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
home-manager = {
- url = "github:nix-community/home-manager/release-25.11";
+ url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@@ -37,7 +37,7 @@
inherit (pkgs)
runCommandLocal
callPackage
- nixfmt-rfc-style
+ nixfmt
deadnix
statix
;
@@ -57,7 +57,7 @@
sharefs = callPackage ./cmd/sharefs/test { inherit system self; };
- formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt-rfc-style ]; } ''
+ formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt ]; } ''
cd ${./.}
echo "running nixfmt..."