statically set machine-id so spotify login persists

This commit is contained in:
Gerg-L 2023-03-22 20:28:34 -04:00
parent 23623a001a
commit ee95fa7ead

View file

@ -12,4 +12,7 @@ _: {lib, ...}: {
#make sure the sopskey is found #make sure the sopskey is found
sops.age.sshKeyPaths = lib.mkForce ["/persist/ssh/ssh_host_ed25519_key"]; sops.age.sshKeyPaths = lib.mkForce ["/persist/ssh/ssh_host_ed25519_key"];
fileSystems."/persist".neededForBoot = true; fileSystems."/persist".neededForBoot = true;
environment.etc = {
"machine-id".text = "b6431c2851094770b614a9cfa78fb6ea";
};
} }