mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-27 18:27:12 +08:00
18 lines
270 B
Nix
18 lines
270 B
Nix
{ pkgs, ... }:
|
|
let
|
|
swhkd = import ../../pkgs/swhkd/swhkd.nix {
|
|
inherit (pkgs)
|
|
lib
|
|
rustPlatform
|
|
fetchFromGitHub
|
|
makeWrapper
|
|
pkg-config
|
|
;
|
|
};
|
|
in
|
|
{
|
|
environment.systemPackages = [
|
|
swhkd
|
|
];
|
|
systemd.packages = [ swhkd ];
|
|
}
|