📦 Add Caitsith package #8

Merged
wymiller merged 1 commits from caitsith into master 2026-08-11 18:45:22 -05:00
2 changed files with 8 additions and 1 deletions
+2
View File
@@ -8,6 +8,7 @@
darwin.url = "github:LnL7/nix-darwin"; darwin.url = "github:LnL7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs"; darwin.inputs.nixpkgs.follows = "nixpkgs";
hildibrand.url = "git+https://scm.wyattjmiller.com/wymiller/hildibrand.git"; hildibrand.url = "git+https://scm.wyattjmiller.com/wymiller/hildibrand.git";
caitsith.url = "git+https://scm.wyattjmiller.com/wymiller/caitsith.git";
}; };
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, darwin, ... }: outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, darwin, ... }:
@@ -32,6 +33,7 @@
# packages that are already built with Nix go here # packages that are already built with Nix go here
hildibrand = inputs.hildibrand.packages.${system}.default; hildibrand = inputs.hildibrand.packages.${system}.default;
caitsith = inputs.caitsith.packages.${system}.default;
} }
); );
+6 -1
View File
@@ -1,7 +1,12 @@
{ pkgs, hildibrand }: {
pkgs,
hildibrand ? null,
caitsith ? null
}:
{ {
# any packages that are added to pkgs and are inputs, we inherit them here # any packages that are added to pkgs and are inputs, we inherit them here
inherit hildibrand; inherit hildibrand;
inherit caitsith;
# any packages that build instructions are in this repo, they go here # any packages that build instructions are in this repo, they go here
# sable-web = pkgs.callPackage ./common/sable.nix {}; # sable-web = pkgs.callPackage ./common/sable.nix {};