mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -05:00
home/hyprland: remove scripts inherits
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
1c842df3c0
commit
72f50e6d7b
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
cfg = config.ar.home;
|
cfg = config.ar.home;
|
||||||
inherit (import ./scripts.nix {inherit config lib pkgs;}) clamshell idleD tablet wallpaperD;
|
scripts = import ./scripts.nix {inherit config lib pkgs;};
|
||||||
|
|
||||||
# Media/hardware commands
|
# Media/hardware commands
|
||||||
brightness = rec {
|
brightness = rec {
|
||||||
|
@ -104,11 +104,11 @@ in {
|
||||||
",xf86audioprev,exec,${media.prev}"
|
",xf86audioprev,exec,${media.prev}"
|
||||||
",xf86audionext,exec,${media.next}"
|
",xf86audionext,exec,${media.next}"
|
||||||
]
|
]
|
||||||
++ builtins.map (switch: ",switch:${switch},exec,${tablet}") cfg.desktop.hyprland.tabletMode.tabletSwitches
|
++ builtins.map (switch: ",switch:${switch},exec,${scripts.tablet}") cfg.desktop.hyprland.tabletMode.tabletSwitches
|
||||||
++ lib.lists.optionals (cfg.desktop.hyprland.laptopMonitors != [])
|
++ lib.lists.optionals (cfg.desktop.hyprland.laptopMonitors != [])
|
||||||
[
|
[
|
||||||
",switch:on:Lid Switch,exec,${clamshell} on"
|
",switch:on:Lid Switch,exec,${scripts.clamshell} on"
|
||||||
",switch:off:Lid Switch,exec,${clamshell} off"
|
",switch:off:Lid Switch,exec,${scripts.clamshell} off"
|
||||||
];
|
];
|
||||||
|
|
||||||
bindle = [
|
bindle = [
|
||||||
|
@ -150,9 +150,9 @@ in {
|
||||||
|
|
||||||
exec-once =
|
exec-once =
|
||||||
[
|
[
|
||||||
wallpaperD
|
scripts.wallpaperD
|
||||||
(lib.getExe pkgs.waybar)
|
(lib.getExe pkgs.waybar)
|
||||||
idleD
|
scripts.idleD
|
||||||
(lib.getExe pkgs.wayland-pipewire-idle-inhibit)
|
(lib.getExe pkgs.wayland-pipewire-idle-inhibit)
|
||||||
(lib.getExe' pkgs.blueman "blueman-applet")
|
(lib.getExe' pkgs.blueman "blueman-applet")
|
||||||
(lib.getExe' pkgs.networkmanagerapplet "nm-applet")
|
(lib.getExe' pkgs.networkmanagerapplet "nm-applet")
|
||||||
|
|
Loading…
Reference in a new issue