mv komikku to module
nix flake show / show-flake (push) Successful in 26s

This commit is contained in:
smayzy
2025-07-17 16:27:26 +02:00
parent a99c4b33a3
commit 6171b51218
6 changed files with 21 additions and 3 deletions
+2 -1
View File
@@ -5,6 +5,7 @@
./obsidian.nix
./kdenlive.nix
./blender.nix
./inkscape.nic
./inkscape.nix
./komikku.nix
];
}
+17
View File
@@ -0,0 +1,17 @@
{ 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
];
};
}