nix-stuff/roles/server/rust_motd.nix

14 lines
254 B
Nix

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