Compare commits
No commits in common. "6171b51218334023491210e7a25cfc419926ba35" and "904e582cc86f954f0023651491b3d100e135ced0" have entirely different histories.
6171b51218
...
904e582cc8
@ -40,6 +40,8 @@
|
||||
'';
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
komikku
|
||||
inkscape
|
||||
];
|
||||
|
||||
services.flatpak = {
|
||||
|
||||
@ -30,7 +30,9 @@
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
floorp
|
||||
komikku
|
||||
librewolf
|
||||
inkscape
|
||||
];
|
||||
|
||||
services.flatpak = {
|
||||
|
||||
@ -31,8 +31,6 @@ in
|
||||
kdenlive.enable = true;
|
||||
thunderbird.enable = true;
|
||||
blender.enable = true;
|
||||
inkscape.enable = true;
|
||||
komikku.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@ -30,8 +30,6 @@ in
|
||||
obsidian.enable = true;
|
||||
kdenlive.enable = true;
|
||||
thunderbird.enable = true;
|
||||
inkscape.enable = true;
|
||||
komikku.enable = true;
|
||||
};
|
||||
services.logind.lidSwitch = "ignore";
|
||||
};
|
||||
|
||||
@ -5,7 +5,5 @@
|
||||
./obsidian.nix
|
||||
./kdenlive.nix
|
||||
./blender.nix
|
||||
./inkscape.nix
|
||||
./komikku.nix
|
||||
];
|
||||
}
|
||||
|
||||
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user