Pretty massive changes really

This commit is contained in:
2021-11-28 12:39:03 -08:00
parent 003637f435
commit 6bf378cad7
92 changed files with 126 additions and 10784 deletions
+4 -3
View File
@@ -35,7 +35,7 @@ in {
"/boot" = {
device = "/dev/disk/by-label/lambda-boot";
fsType = "ext4";
options = [ "noexec" ];
options = [ "noexec" "noatime" "nodiratime" ];
};
"/" = {
@@ -47,19 +47,20 @@ in {
"/nix" = {
device = "lambda/transient/nix";
fsType = "zfs";
options = [ "noatime" "nodiratime" ];
};
"/var/log" = {
device = "lambda/transient/logs";
fsType = "zfs";
neededForBoot = true;
options = [ "noexec" ];
options = [ "noexec" "noatime" "nodiratime" ];
};
"/state" = {
device = "lambda/persistent/state";
fsType = "zfs";
options = [ "noexec" ];
options = [ "noexec" "noatime" "nodiratime" ];
};
};
+1 -1
View File
@@ -68,7 +68,7 @@ with lib; {
interfaces = {
extif0 = {
macAddress =
pkgs.lib.fudo.network.generate-mac-address "legatus" "extif0";
pkgs.lib.network.generate-mac-address "legatus" "extif0";
};
};
};
+1 -1
View File
@@ -72,7 +72,7 @@ with lib; {
interfaces = {
extif0 = {
macAddress =
pkgs.lib.fudo.network.generate-mac-address config.instance.hostname "extif0";
pkgs.lib.network.generate-mac-address config.instance.hostname "extif0";
};
};
};