14 lines
254 B
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;
|
|
};
|
|
};
|
|
}
|