Compare commits

..

No commits in common. "6171b51218334023491210e7a25cfc419926ba35" and "904e582cc86f954f0023651491b3d100e135ced0" have entirely different histories.

7 changed files with 4 additions and 40 deletions

View File

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

View File

@ -30,7 +30,9 @@
environment.systemPackages = with pkgs; [
floorp
komikku
librewolf
inkscape
];
services.flatpak = {

View File

@ -31,8 +31,6 @@ in
kdenlive.enable = true;
thunderbird.enable = true;
blender.enable = true;
inkscape.enable = true;
komikku.enable = true;
};
};
}

View File

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

View File

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

View File

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

View File

@ -1,17 +0,0 @@
{ 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
];
};
}