nix-config/modules/nix/office/komikku.nix
smayzy 6171b51218
All checks were successful
nix flake show / show-flake (push) Successful in 26s
mv komikku to module
2025-07-17 16:27:26 +02:00

18 lines
320 B
Nix

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