This commit is contained in:
2025-10-10 01:29:34 +03:00
parent f01fa76232
commit b19ca0410e
4 changed files with 24 additions and 6 deletions
+6 -4
View File
@@ -17,10 +17,12 @@
};
sops.secrets.minifluxenv = {
format = "dotenv";
sopsFile = ./secrets/miniflux.env;
# key = null;
owner = "miniflux";
group = "miniflux";
mode = "0600";
# key = null;
# owner = "miniflux";
# group = "miniflux";
mode = "0650";
# path = "/run/secrets/miniflux.env";
};
}
+15
View File
@@ -66,6 +66,21 @@
group = config.users.users."${xlib.device.username}".group;
mode = "0600";
};
ssh_key_public = {
format = "yaml";
key = "ssh_key_public";
path = "/home/${xlib.device.username}/.ssh/id_ed25519.pub";
owner = config.users.users."${xlib.device.username}".name;
group = config.users.users."${xlib.device.username}".group;
mode = "0655";
};
ssh_key_public_host = {
format = "yaml";
key = "ssh_key_public";
path = "/etc/ssh/id_ed25519.pub";
mode = "0655";
};
};
};
}