dotfiles.nix/pkgs/default.nix

11 lines
374 B
Nix
Raw Normal View History

2022-09-17 23:02:51 +00:00
{ callPackage, inputs, system }:
{
2022-09-23 03:49:34 +00:00
dark-mode-notify = callPackage ./dark-mode-notify.nix {
sdkVersion = "14.1";
2022-09-23 03:49:34 +00:00
inherit (inputs) dark-mode-notify-src;
};
2022-11-22 01:36:15 +00:00
ia-writer-family = callPackage ./ia-writer-family.nix { inherit (inputs) ia-writer-family-src; };
helix-flake = inputs.helix.packages.${system}.default;
2022-09-23 03:49:34 +00:00
yubiswitch = callPackage ./yubiswitch.nix { };
2022-09-04 17:39:34 +00:00
}