commit 9eb8cdca9e5b253d16ab3f8a02fdf6ae3d991e11 (tree)
parent 486a5e4fea1a5b41aa2b62305ae0533fd951f728
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date: Wed, 3 Apr 2024 17:20:51 +0300
sdcard-based machines: move to a profile
Diffstat:
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/hosts/vno1-op5p/configuration.nix b/hosts/vno1-op5p/configuration.nix
@@ -7,6 +7,7 @@
in {
imports = [
../../modules
+ ../../modules/profiles/sdcard
../../shared/platform/orangepi5plus.nix
];
diff --git a/hosts/vno3-rp3b/configuration.nix b/hosts/vno3-rp3b/configuration.nix
@@ -7,9 +7,9 @@
myData,
...
}: {
- # previously:
- # imports = [(modulesPath + "/installer/scan/not-detected.nix")];
- # as of 23.05 that is:
+ imports = [
+ ../../modules/profiles/sdcard
+ ];
boot = {
initrd = {
@@ -112,8 +112,6 @@
};
};
- services.journald.extraConfig = "Storage=volatile";
-
environment.etc = {
"datapool-passphrase.txt".source = config.age.secrets.datapool-passphrase.path;
};
diff --git a/modules/profiles/sdcard/default.nix b/modules/profiles/sdcard/default.nix
@@ -0,0 +1,3 @@
+_: {
+ services.journald.extraConfig = "Storage=volatile";
+}