From 66b22ae78467181b1019b3a649e7a27c3e7e792c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Mon, 23 Oct 2023 22:52:17 -0300 Subject: [PATCH] ghost: add storage --- hosts/ghost.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/ghost.nix b/hosts/ghost.nix index eec60f0..b0d2b5d 100644 --- a/hosts/ghost.nix +++ b/hosts/ghost.nix @@ -117,6 +117,12 @@ }; }; + fileSystems."/var" = { + device = "/dev/disk/by-uuid/b19e7272-8fd1-4999-93eb-abc6d5c0a1cc"; + fsType = "btrfs"; + options = [ "subvol=@var" ]; + }; + system.stateVersion = "23.05"; # Never change this }