nix-config/modules/nix/notif/mako.nix
smayzy 614a10248f
All checks were successful
nix flake show / show-flake (push) Successful in 34s
mv mako to module
2025-07-29 18:05:45 +02:00

18 lines
306 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
];
};
}