mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 07:23:56 -05:00
24 lines
528 B
Nix
24 lines
528 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./randomWallpaper.nix ./redShift.nix];
|
|
|
|
config = lib.mkIf config.ar.home.desktop.sway.enable {
|
|
ar.home.theme.gtk.hideTitleBar =
|
|
if config.wayland.windowManager.sway.package == pkgs.sway
|
|
then true
|
|
else false;
|
|
|
|
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];
|
|
};
|
|
};
|
|
}
|