This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
./obsidian.nix
|
||||
./kdenlive.nix
|
||||
./blender.nix
|
||||
./inkscape.nic
|
||||
./inkscape.nix
|
||||
./komikku.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user