mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
22 lines
477 B
Nix
22 lines
477 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.desktop.sway.enable {
|
|
ar.home.theme.gtk.hideTitleBar =
|
|
if config.wayland.windowManager.sway.package == pkgs.swayfx
|
|
then false
|
|
else true;
|
|
|
|
wayland.windowManager.sway = import ./settings.nix {inherit config lib pkgs;};
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
configPackages = [pkgs.xdg-desktop-portal-wlr];
|
|
extraPortals = [pkgs.xdg-desktop-portal-wlr];
|
|
};
|
|
};
|
|
}
|