about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-12-18 17:17:42 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-12-18 17:17:42 +0100
commita3bfbe501167db8647f03f3b2d43ed2a5aea9552 (patch)
tree68ec07a3fdf9b8cff8cf8592d4dd7910d59446ab
parentmodules/stalwart-mail: Use the nixpkgs' starwart package (diff)
downloadnixos-server-a3bfbe501167db8647f03f3b2d43ed2a5aea9552.zip
modules/rust-motd: Avoid using the deprecated `runCommandNoCCLocal`
Diffstat (limited to '')
-rw-r--r--modules/by-name/ru/rust-motd/module.nix2
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"