this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

home/hyprland: remove scripts inherits

+6 -6
+6 -6
homeManagerModules/desktop/hyprland/settings.nix
··· 5 5 ... 6 6 }: let 7 7 cfg = config.ar.home; 8 - inherit (import ./scripts.nix {inherit config lib pkgs;}) clamshell idleD tablet wallpaperD; 8 + scripts = import ./scripts.nix {inherit config lib pkgs;}; 9 9 10 10 # Media/hardware commands 11 11 brightness = rec { ··· 104 104 ",xf86audioprev,exec,${media.prev}" 105 105 ",xf86audionext,exec,${media.next}" 106 106 ] 107 - ++ builtins.map (switch: ",switch:${switch},exec,${tablet}") cfg.desktop.hyprland.tabletMode.tabletSwitches 107 + ++ builtins.map (switch: ",switch:${switch},exec,${scripts.tablet}") cfg.desktop.hyprland.tabletMode.tabletSwitches 108 108 ++ lib.lists.optionals (cfg.desktop.hyprland.laptopMonitors != []) 109 109 [ 110 - ",switch:on:Lid Switch,exec,${clamshell} on" 111 - ",switch:off:Lid Switch,exec,${clamshell} off" 110 + ",switch:on:Lid Switch,exec,${scripts.clamshell} on" 111 + ",switch:off:Lid Switch,exec,${scripts.clamshell} off" 112 112 ]; 113 113 114 114 bindle = [ ··· 150 150 151 151 exec-once = 152 152 [ 153 - wallpaperD 153 + scripts.wallpaperD 154 154 (lib.getExe pkgs.waybar) 155 - idleD 155 + scripts.idleD 156 156 (lib.getExe pkgs.wayland-pipewire-idle-inhibit) 157 157 (lib.getExe' pkgs.blueman "blueman-applet") 158 158 (lib.getExe' pkgs.networkmanagerapplet "nm-applet")