configuration.nix/home/wm/default.nix
2024-10-27 16:24:31 +05:30

20 lines
285 B
Nix

{ pkgs, ... }:
{
imports = [
./niri
./hyprland
./addon
];
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
config = {
common = {
default = [ "gtk" ];
};
};
};
}