Skip to content

Commit

Permalink
feat(desktop): added support to flatpak
Browse files Browse the repository at this point in the history
  • Loading branch information
xgroleau committed Mar 14, 2024
1 parent 1ab4a16 commit c61b45c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion hosts/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,19 @@

programs.ssh.startAgent = true;

# flatpak
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-kde
xdg-desktop-portal-wlr
];
config.common.default = "*";
};
services.flatpak.enable = true;

services = {
flatpak.enable = true;

udev = {
enable = true;
Expand Down

0 comments on commit c61b45c

Please sign in to comment.