sync configs

This commit is contained in:
Christoph Cullmann 2024-01-11 07:37:51 +01:00
parent 56e114ba69
commit 8c8cd2ee04

View file

@ -40,19 +40,25 @@
fileSystems."/home" = fileSystems."/home" =
{ device = "/data/home"; { device = "/data/home";
fsType = "none"; fsType = "none";
neededForBoot = true;
options = [ "bind" ]; options = [ "bind" ];
depends = [ "/data" ];
}; };
fileSystems."/root" = fileSystems."/root" =
{ device = "/data/root"; { device = "/data/root";
fsType = "none"; fsType = "none";
neededForBoot = true;
options = [ "bind" ]; options = [ "bind" ];
depends = [ "/data" ];
}; };
fileSystems."/etc/nixos" = fileSystems."/etc/nixos" =
{ device = "/data/nixos/kuro"; { device = "/data/nixos/kuro";
fsType = "none"; fsType = "none";
neededForBoot = true;
options = [ "bind" ]; options = [ "bind" ];
depends = [ "/data" ];
}; };
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";