From ca231bc2c805cb9b927a620062ec943cfe5d558d Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sat, 29 Jul 2023 16:11:55 +0200 Subject: sync current state --- neko/hardware-configuration.nix | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'neko') diff --git a/neko/hardware-configuration.nix b/neko/hardware-configuration.nix index f2d229c..898bf93 100644 --- a/neko/hardware-configuration.nix +++ b/neko/hardware-configuration.nix @@ -52,31 +52,41 @@ }; fileSystems."/home" = - { device = "/data/home"; + { + depends = [ "/data" ]; + device = "/data/home"; fsType = "none"; options = [ "bind" ]; }; fileSystems."/root" = - { device = "/data/root"; + { + depends = [ "/data" ]; + device = "/data/root"; fsType = "none"; options = [ "bind" ]; }; fileSystems."/etc/nixos" = - { device = "/data/nixos/neko"; + { + depends = [ "/data" ]; + device = "/data/nixos/neko"; fsType = "none"; options = [ "bind" ]; }; fileSystems."/home/cullmann/projects" = - { device = "/dev/mapper/crypt-projects"; + { + depends = [ "/home" ]; + device = "/dev/mapper/crypt-projects"; fsType = "btrfs"; options = [ "noatime" ]; }; fileSystems."/home/cullmann/vms" = - { device = "/dev/mapper/crypt-vms"; + { + depends = [ "/home" ]; + device = "/dev/mapper/crypt-vms"; fsType = "btrfs"; options = [ "noatime" ]; }; -- cgit v1.2.3