configuration.nix/home/wm/default.nix

20 lines
274 B
Nix
Raw Normal View History

2024-05-12 15:33:58 +05:30
{ pkgs, ... }:
2024-03-06 22:33:11 +05:30
{
2023-04-04 09:41:51 +05:30
imports = [
./hyprland
2023-04-04 09:41:51 +05:30
./addon
];
2024-03-06 22:33:11 +05:30
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
2024-05-12 13:31:12 +05:30
extraPortals = [
pkgs.xdg-desktop-portal-gtk
2024-03-06 22:33:11 +05:30
];
config = {
common = {
default = [ "gtk" ];
};
};
};
2023-04-04 09:41:51 +05:30
}