14 lines
562 B
Nix
14 lines
562 B
Nix
{ pkgs, hildibrand }:
|
|
{
|
|
# any packages that are added to pkgs and are inputs, we inherit them here
|
|
inherit hildibrand;
|
|
|
|
# any packages that build instructions are in this repo, they go here
|
|
# sable-web = pkgs.callPackage ./common/sable.nix {};
|
|
swaytreesave = pkgs.callPackage ./linux/swaytreesave.nix {};
|
|
musicpresence = pkgs.callPackage ./linux/musicpresence.nix {};
|
|
vintage-story = pkgs.callPackage ./linux/vintage-story.nix {};
|
|
archon = pkgs.callPackage ./linux/archon.nix {};
|
|
yubilock = pkgs.callPackage ./linux/yubilock/default.nix { };
|
|
}
|