This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/flatpak.nix

23 lines
454 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.system.flatpak;
graphical = config.my.graphical;
in with lib; {
options = {
system.flatpak.enable = mkOption {
default = graphical.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
services.flatpak.enable = true;
xdg.portal = {
enable = true;
extraPortals =
[ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ];
};
};
}