mv komikku to module
All checks were successful
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

View File

@ -40,7 +40,6 @@
'';
environment.systemPackages = with pkgs; [
komikku
];
services.flatpak = {

View File

@ -30,7 +30,6 @@
environment.systemPackages = with pkgs; [
floorp
komikku
librewolf
];

View File

@ -32,6 +32,7 @@ in
thunderbird.enable = true;
blender.enable = true;
inkscape.enable = true;
komikku.enable = true;
};
};
}

View File

@ -31,6 +31,7 @@ in
kdenlive.enable = true;
thunderbird.enable = true;
inkscape.enable = true;
komikku.enable = true;
};
services.logind.lidSwitch = "ignore";
};

View File

@ -5,6 +5,7 @@
./obsidian.nix
./kdenlive.nix
./blender.nix
./inkscape.nic
./inkscape.nix
./komikku.nix
];
}

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
];
};
}