Files
Nixos/modules/system/darwin/eul.nix
T
2026-02-12 14:58:06 +01:00

18 lines
248 B
Nix

{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.eul;
in
{
options.os.homebrew.eul = {
enable = mkEnableOption "System iina homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"eul"
];
};
}