18 lines
314 B
Nix
18 lines
314 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./pipewire.nix
|
|
./flatpak.nix
|
|
./fonts.nix
|
|
./polkit-gtk.nix
|
|
];
|
|
|
|
# Enable font dir for compatability
|
|
fonts.fontDir.enable = true;
|
|
|
|
# enable desktop portals
|
|
xdg.portal.enable = true;
|
|
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
|
|
}
|