mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
18 lines
342 B
Nix
18 lines
342 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.jade.flatpak;
|
|
in with lib; {
|
|
options.jade.flatpak = {
|
|
enable = mkEnableOption "Enable flatpak";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
services.flatpak.enable = true;
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
};
|
|
}
|