Files
Nixos/modules/system/darwin/zed.nix
T

18 lines
247 B
Nix

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