Fix issue after updating lockfile
This commit is contained in:
parent
55c5365472
commit
4217565d5e
5 changed files with 7 additions and 9 deletions
|
|
@ -252,8 +252,8 @@ in
|
|||
", XF86AudioPrev, exec, ${pkgs.playerctl}/bin/playerctl previous"
|
||||
", XF86AudioNext, exec, ${pkgs.playerctl}/bin/playerctl next"
|
||||
", XF86AudioPlay, exec, ${pkgs.playerctl}/bin/playerctl play-pause"
|
||||
", XF86MonBrightnessDown, exec, ${pkgs.light}/bin/light -U 5"
|
||||
", XF86MonBrightnessUp, exec, ${pkgs.light}/bin/light -A 5"
|
||||
", XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl set +5"
|
||||
", XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl set 5-"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -320,8 +320,8 @@ in
|
|||
"${modifier}+Left" = "exec 'playerctl previous'";
|
||||
|
||||
# Backlight keys
|
||||
"XF86MonBrightnessDown" = "exec '${pkgs.light}/bin/light -U 5'";
|
||||
"XF86MonBrightnessUp" = "exec '${pkgs.light}/bin/light -A 5'";
|
||||
"XF86MonBrightnessDown" = "exec '${pkgs.brightnessctl}/bin/brightnessctl set 5+'";
|
||||
"XF86MonBrightnessUp" = "exec '${pkgs.brightnessctl}/bin/brightnessctl set 5-'";
|
||||
|
||||
# Navigation
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{ ... }:
|
||||
(final: prev: {
|
||||
signal-desktop-bin = prev.signal-desktop-bin.overrideAttrs (oldAttrs: {
|
||||
signal-desktop = prev.signal-desktop.overrideAttrs (oldAttrs: {
|
||||
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ prev.makeWrapper ];
|
||||
postInstall = oldAttrs.postInstall or "" + ''
|
||||
wrapProgram $out/bin/signal-desktop \
|
||||
|
|
@ -82,7 +82,7 @@
|
|||
hugo
|
||||
nixos-generators
|
||||
vlc
|
||||
signal-desktop-bin
|
||||
signal-desktop
|
||||
zoom-us
|
||||
];
|
||||
environment.pathsToLink = [
|
||||
|
|
@ -90,8 +90,6 @@
|
|||
"/share/xdg-desktop-portal"
|
||||
];
|
||||
|
||||
programs.light.enable = true;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@
|
|||
prusa-slicer
|
||||
esptool
|
||||
minicom
|
||||
signal-desktop-bin
|
||||
signal-desktop
|
||||
ncdu
|
||||
|
||||
cntr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue