From decbb0713babac9c29b7d63e5ab61bfd499ec7f8 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 14 Dec 2025 20:22:08 +1100 Subject: [PATCH] nijika: mount media subvolume on boot holy fuck how did i not notice this for so long, like i didnt reboot for a long time or smth??? --- hosts/nijika/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/nijika/hardware-configuration.nix b/hosts/nijika/hardware-configuration.nix index 427e9df..a80d5bd 100644 --- a/hosts/nijika/hardware-configuration.nix +++ b/hosts/nijika/hardware-configuration.nix @@ -45,6 +45,12 @@ options = [ "fmask=0077" "dmask=0077" ]; }; + fileSystems."/media" = + { device = "/dev/mapper/root"; + fsType = "btrfs"; + options = [ "subvol=media" ]; + }; + swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";