rust-motd: removed service_status section since it's relatively useless
This commit is contained in:
parent
9007b42d93
commit
66426cf9d6
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.profile.services.rust-motd;
|
||||
inherit (lib) mkIf mkMerge;
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
{
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -15,12 +15,6 @@ in
|
|||
color = "white";
|
||||
command = "${pkgs.fortune-kind}/bin/fortune-kind | ${pkgs.neo-cowsay}/bin/cowsay --random";
|
||||
};
|
||||
service_status = mkMerge [
|
||||
{ }
|
||||
(mkIf config.profile.podman.pihole.enable { Pihole = "podman-pihole"; })
|
||||
(mkIf config.profile.podman.qbittorrent.enable { QBittorrent = "podman-qbittorrent"; })
|
||||
(mkIf config.profile.services.forgejo.enable { Forgejo = "forgejo"; })
|
||||
];
|
||||
uptime = {
|
||||
prefix = "Up";
|
||||
};
|
||||
|
@ -41,7 +35,6 @@ in
|
|||
"last_login"
|
||||
"uptime"
|
||||
"memory"
|
||||
"service_status"
|
||||
"filesystems"
|
||||
"last_run"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue