32 lines
460 B
Nix
32 lines
460 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./editors/nvim/default.nix
|
|
./networking.nix
|
|
./users.nix
|
|
./services.nix
|
|
./firefox.nix
|
|
./pkgs.nix
|
|
];
|
|
|
|
xdg = {
|
|
portal = {
|
|
enable = true;
|
|
xdgOpenUsePortal = true;
|
|
config = {
|
|
common.default = "*";
|
|
};
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gnome
|
|
xdg-desktop-portal-wlr
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
};
|
|
|
|
|
|
}
|