13 lines
224 B
Nix
13 lines
224 B
Nix
{...}: {
|
|
programs.rust-motd = {
|
|
enable = true;
|
|
enableMotdInSSHD = true;
|
|
settings = {
|
|
filesystems = {
|
|
Root = "/";
|
|
Boot = "/boot/efi";
|
|
};
|
|
last_run.last_run = true;
|
|
};
|
|
};
|
|
}
|