skipper: symlink /etc/machine-id instead of bind-mount

This commit is contained in:
Adithya 2024-11-16 19:30:35 +05:30
parent f97c01a604
commit 9ca9fb8ae3
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C

View file

@ -1,5 +1,17 @@
_: { _:
environment.persistence."/persist/system" = { let
persistant-path = "/persist/system";
in
{
environment = {
etc = {
"machine-id" = {
enable = true;
source = "${persistant-path}/machine-id";
mode = "symlink";
};
};
persistence."${persistant-path}" = {
hideMounts = true; hideMounts = true;
directories = [ directories = [
"/etc/NetworkManager/system-connections" "/etc/NetworkManager/system-connections"
@ -18,8 +30,6 @@ _: {
"/var/lib/systemd" "/var/lib/systemd"
"/var/log" "/var/log"
]; ];
files = [ };
"/etc/machine-id"
];
}; };
} }