Home Gen5 @ 2025-05-04-05:05 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-06 01:07:53 +02:00
parent 891347b06c
commit 55478dc544
3 changed files with 14 additions and 0 deletions

View File

@ -18,6 +18,7 @@
plasmaIntegration = true;
passFF = true;
};
hive.flameshot.enable = true;
hive.kdeconnect.enable = true;
hive.nextcloud.enable = true;
hive.nix-scripts.enable = true;

View File

@ -39,6 +39,7 @@
./home/wofi
./home/zsh
./home/firefox.nix
./home/flameshot.nix
./home/kdeconnect.nix
./home/plasma.nix
./home/ssh.nix

View File

@ -0,0 +1,12 @@
{
config,
lib,
...
}: let
cfg = config.hive.flameshot;
in {
options.hive.flameshot.enable = lib.mkEnableOption "Flameshot service.";
config = lib.mkIf cfg.enable {
services.flameshot.enable = true;
};
}