{ config, lib, pkgs, ... }: { imports = [ ./waybar.nix ./sway-idle.nix ./wofi.nix ./gammastep.nix ]; home.packages = [ pkgs.pavucontrol pkgs.wev pkgs.wf-recorder pkgs.wl-clipboard pkgs.wofi ]; home.sessionVariables = { MOZ_ENABLE_WAYLAND = true; LIBSEAT_BACKEND = "logind"; }; wayland.windowManager.sway = { enable = true; systemdIntegration = true; config = rec { modifier = "Mod4"; terminal = "${config.programs.alacritty.package}/bin/alacritty"; menu = "${pkgs.wofi}/bin/wofi -S run"; bars = [ ]; output = { "*" = { scale = "1.5"; }; }; }; }; }