nix-stuff/roles/server/rust_motd.nix
2024-07-12 11:48:32 +02:00

13 lines
224 B
Nix

{...}: {
programs.rust-motd = {
enable = true;
enableMotdInSSHD = true;
settings = {
filesystems = {
Root = "/";
Boot = "/boot/efi";
};
last_run.last_run = true;
};
};
}