1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Make the skhd service default to the skhd package

This can be overrided if necessary, but I don't see any reason the
nixpkgs package shouldn't be the default. It looks like this package
didn't exist when the service was created.
This commit is contained in:
Alyssa Ross 2018-07-27 16:12:04 +01:00
parent fa3f67966b
commit af84b3c519
No known key found for this signature in database
GPG key ID: C4844408C0657052

View file

@ -16,7 +16,7 @@ in
services.skhd.package = mkOption {
type = types.package;
example = literalExample "pkgs.skhd";
default = pkgs.skhd;
description = "This option specifies the skhd package to use.";
};