Add eul app

This commit is contained in:
2026-02-12 14:58:06 +01:00
parent 3110363cc6
commit b79b37576d
2 changed files with 18 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ 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"
];
};
}