nix-config/modules/nix/office/aegisub.nix
smayzy 923e6f4bee
All checks were successful
nix flake show / show-flake (push) Successful in 32s
mv aegisub to modules
2025-07-21 15:23:06 +02:00

18 lines
320 B
Nix

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