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
456 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
cfg = config.system.flatpak;
2021-12-15 05:27:39 +00:00
graphical = config.this.graphical;
in with lib; {
options = {
system.flatpak.enable = mkOption {
2022-03-24 04:00:26 +00:00
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 ];
};
};
}