From 70217a022f77fbb8074dd763c81008178e171313 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Tue, 14 Jun 2022 22:33:15 -0400 Subject: [PATCH] fix stateVersion warning --- hosts/nixdev/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/nixdev/default.nix b/hosts/nixdev/default.nix index 2517ff9..55d0c3a 100644 --- a/hosts/nixdev/default.nix +++ b/hosts/nixdev/default.nix @@ -37,4 +37,6 @@ "/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; }; "/nix" = { device = "/dev/sda1"; fsType = "ext4"; options = [ "noatime" ]; }; }; + + system.stateVersion = "22.05"; }