diff options
author | tdback <tyler@tdback.net> | 2025-01-05 12:37:34 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-05 12:37:34 -0500 |
commit | ff80e2841c2ccbaa0df325269b8a89076da6ce43 (patch) | |
tree | 5bfe209c063845e110127e42f266bde425b90891 /modules/scripts/motd/default.nix | |
parent | 30ffe9856a1ef62f8413fe44b33c8545460bac48 (diff) |
cleanup scripts
Diffstat (limited to 'modules/scripts/motd/default.nix')
-rw-r--r-- | modules/scripts/motd/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/scripts/motd/default.nix b/modules/scripts/motd/default.nix index 2b60ca3..c4b0c6b 100644 --- a/modules/scripts/motd/default.nix +++ b/modules/scripts/motd/default.nix @@ -4,8 +4,6 @@ let cfg = config.programs.motd; motd = pkgs.writeShellScriptBin "motd" '' - #!/usr/bin/env bash - RED="\e[31m" GREEN="\e[32m" YELLOW="\e[33m" @@ -70,8 +68,7 @@ let done <<< "$SERVICES" printf "\n" ''; -in -{ +in { options = { programs.motd = { enable = mkEnableOption "motd"; |