diff options
| author | seth <[email protected]> | 2023-10-07 10:10:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-07 10:18:46 -0400 |
| commit | 519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch) | |
| tree | 441a3b0cbf33a15ac052a1fd6a6894cf169f493b /modules/flake/hydraJobs.nix | |
| parent | 62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff) | |
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'modules/flake/hydraJobs.nix')
| -rw-r--r-- | modules/flake/hydraJobs.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/flake/hydraJobs.nix b/modules/flake/hydraJobs.nix deleted file mode 100644 index cfe9ca7..0000000 --- a/modules/flake/hydraJobs.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - flake-parts-lib, - ... -}: let - inherit (lib) mkOption types; - inherit (flake-parts-lib) mkSubmoduleOptions; -in { - options = { - flake = mkSubmoduleOptions { - hydraJobs = mkOption { - type = types.lazyAttrsOf types.raw; - default = {}; - description = '' - A collection of jobsets for Hydra. See https://nixos.wiki/wiki/Hydra#Flake_jobset - ''; - example = '' - { - inherit (self) packages; - } - ''; - }; - }; - }; -} |
