diff --git a/os/programs/swhkd.nix b/os/programs/swhkd.nix index bf36cc4..9096ca0 100644 --- a/os/programs/swhkd.nix +++ b/os/programs/swhkd.nix @@ -7,6 +7,8 @@ let fetchFromGitHub makeWrapper pkg-config + systemd + libgcc ; }; in diff --git a/pkgs/swhkd/swhkd.nix b/pkgs/swhkd/swhkd.nix index 145f65a..22cad2f 100644 --- a/pkgs/swhkd/swhkd.nix +++ b/pkgs/swhkd/swhkd.nix @@ -4,6 +4,8 @@ fetchFromGitHub, makeWrapper, pkg-config, + systemd, + libgcc, }: rustPlatform.buildRustPackage { pname = "swhkd"; @@ -34,6 +36,11 @@ rustPlatform.buildRustPackage { "$out/bin/swhkd" ''; + buildInputs = [ + systemd + libgcc + ]; + meta = with lib; { description = "A drop-in replacement for sxhkd that works with wayland"; homepage = "https://github.com/waycrate/swhkd";