nix-config/modules/nix/notif/mako.nix
smayzy 852d9a2baa
All checks were successful
nix flake show / show-flake (push) Successful in 50s
clean
2025-08-02 15:24:45 +02:00

23 lines
315 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.mako.enable = mkOption {
type = types.bool;
default = false;
description = "mako";
};
config = mkIf config.smayzy.mako.enable {
environment.systemPackages = with pkgs; [
mako
];
};
}