{ config, lib, ... }: let shell = config.py.profiles.desktop.shell; keybinds = (import ./keybindings.nix { inherit lib shell; }); monitors = import ./monitors.nix; variables = import ./variables.nix; plugins = import ./plugins.nix; env = import ./env.nix; windowrules = import ./windowrules.nix; in { animation = [ "global, 1, 4, default" ]; exec-once = lib.optionals (shell == "dms") [ "dms run" "bash -c \"wl-paste --watch cliphist store &\"" ]; } // keybinds // monitors // variables // plugins // env // windowrules