mv komikku to module
All checks were successful
nix flake show / show-flake (push) Successful in 26s
All checks were successful
nix flake show / show-flake (push) Successful in 26s
This commit is contained in:
parent
a99c4b33a3
commit
6171b51218
@ -40,7 +40,6 @@
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
komikku
|
|
||||||
];
|
];
|
||||||
|
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
|
|||||||
@ -30,7 +30,6 @@
|
|||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
floorp
|
floorp
|
||||||
komikku
|
|
||||||
librewolf
|
librewolf
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@ -32,6 +32,7 @@ in
|
|||||||
thunderbird.enable = true;
|
thunderbird.enable = true;
|
||||||
blender.enable = true;
|
blender.enable = true;
|
||||||
inkscape.enable = true;
|
inkscape.enable = true;
|
||||||
|
komikku.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,6 +31,7 @@ in
|
|||||||
kdenlive.enable = true;
|
kdenlive.enable = true;
|
||||||
thunderbird.enable = true;
|
thunderbird.enable = true;
|
||||||
inkscape.enable = true;
|
inkscape.enable = true;
|
||||||
|
komikku.enable = true;
|
||||||
};
|
};
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "ignore";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
./obsidian.nix
|
./obsidian.nix
|
||||||
./kdenlive.nix
|
./kdenlive.nix
|
||||||
./blender.nix
|
./blender.nix
|
||||||
./inkscape.nic
|
./inkscape.nix
|
||||||
|
./komikku.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
17
modules/nix/office/komikku.nix
Normal file
17
modules/nix/office/komikku.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user