commit c1254267c3cb39fb2f32e6f6e6d84763b5676fd5
parent 3f657a0d8e07a51381c3076fd337e8c795df3a01
Author: Katja (ctucx) <git@ctu.cx>
Date: Tue, 20 May 2025 12:31:05 +0200
parent 3f657a0d8e07a51381c3076fd337e8c795df3a01
Author: Katja (ctucx) <git@ctu.cx>
Date: Tue, 20 May 2025 12:31:05 +0200
config/nixos/modules/filesystems/rootDisk: fix typo in `swap.size` type
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/nixos/modules/filesystem/rootDisk.nix b/config/nixos/modules/filesystem/rootDisk.nix @@ -46,7 +46,7 @@ in default = false; }; size = { - type = lib.strMatching "[0-9]+[KMGTP]"; + type = types.strMatching "[0-9]+[KMGTP]"; }; }; };