11 lines
374 B
Nix
11 lines
374 B
Nix
{ callPackage, inputs, system }:
|
|
{
|
|
dark-mode-notify = callPackage ./dark-mode-notify.nix {
|
|
sdkVersion = "14.1";
|
|
inherit (inputs) dark-mode-notify-src;
|
|
};
|
|
ia-writer-family = callPackage ./ia-writer-family.nix { inherit (inputs) ia-writer-family-src; };
|
|
helix-flake = inputs.helix.packages.${system}.default;
|
|
yubiswitch = callPackage ./yubiswitch.nix { };
|
|
}
|