nixcfg/homeManagerModules/desktop/river/default.nix

19 lines
385 B
Nix
Raw Normal View History

2024-09-15 00:32:31 -04:00
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.desktop.river.enable {
ar.home.theme.gtk.hideTitleBar = true;
wayland.windowManager.river = import ./settings.nix {inherit config lib pkgs;};
xdg.portal = {
enable = true;
configPackages = [pkgs.xdg-desktop-portal-wlr];
extraPortals = [pkgs.xdg-desktop-portal-wlr];
};
};
}