feat: move stuff around a bit, created new modules.

This commit is contained in:
CronyAkatsuki 2026-01-25 19:46:53 +01:00
parent 12fadadc5c
commit 506525af35
12 changed files with 247 additions and 215 deletions

View file

@ -0,0 +1,26 @@
{
config,
lib,
...
}: {
options = {
crony.flatpak.enable = lib.mkEnableOption "Enable and install flatpak packages.";
};
config = lib.mkIf config.crony.flatpak.enable {
# Enable flatpak
services.flatpak = {
enable = true;
packages = [
"com.dec05eba.gpu_screen_recorder"
];
uninstallUnmanaged = true;
update.auto = {
enable = true;
onCalendar = "weekly";
};
};
};
}