diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-12-18 17:17:42 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-12-18 17:17:42 +0100 |
| commit | a3bfbe501167db8647f03f3b2d43ed2a5aea9552 (patch) | |
| tree | 68ec07a3fdf9b8cff8cf8592d4dd7910d59446ab | |
| parent | modules/stalwart-mail: Use the nixpkgs' starwart package (diff) | |
| download | nixos-server-a3bfbe501167db8647f03f3b2d43ed2a5aea9552.zip | |
modules/rust-motd: Avoid using the deprecated `runCommandNoCCLocal`
| -rw-r--r-- | modules/by-name/ru/rust-motd/module.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/ru/rust-motd/module.nix b/modules/by-name/ru/rust-motd/module.nix index 8d0939a..bf23843 100644 --- a/modules/by-name/ru/rust-motd/module.nix +++ b/modules/by-name/ru/rust-motd/module.nix @@ -21,7 +21,7 @@ userList = builtins.mapAttrs (n: v: 2) (lib.filterAttrs pred config.users.users); bannerFile = - pkgs.runCommandNoCCLocal "banner-file" { + pkgs.runCommandLocal "banner-file" { nativeBuildInputs = [pkgs.figlet]; } '' echo "${config.system.name}" | figlet -f slant > "$out" |
