marleyos/modules/base/programs/btop.nix
2025-05-31 14:12:27 -07:00

16 lines
258 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.marleyos.programs.btop;
in {
options.marleyos.programs.btop.enable = lib.mkEnableOption "btop";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
btop
];
};
}