From 8c369a9c63d698424d0cf750b611ed9a35371a84 Mon Sep 17 00:00:00 2001 From: caem Date: Thu, 16 Jan 2025 19:42:56 +0100 Subject: [PATCH] copy thing from example --- hosts/vm/disko.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/vm/disko.nix b/hosts/vm/disko.nix index 083a654..a022249 100644 --- a/hosts/vm/disko.nix +++ b/hosts/vm/disko.nix @@ -23,11 +23,12 @@ }; root = { size = "100%"; + mountpoint = "/partition-root"; content = { type = "btrfs"; - extraArgs = [ "-f" ]; + extraArgs = [ "-f" "-L nixos" ]; subvolumes = { - "root" = { + "/rootfs" = { mountpoint = "/"; mountOptions = [ "noatime" @@ -35,7 +36,7 @@ ]; }; - "nix" = { + "/nix" = { mountpoint = "/nix"; mountOptions = [ "noatime"