diff options
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"; |