nixos/modules/desktop/flatpak/default.nix
2024-09-16 08:03:30 +04:00

14 lines
293 B
Nix

{ inputs, outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.flatpak;
in
{
options.modules.desktop.flatpak = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
# todo declarative thingies
services.flatpak.enable = true;
};
}