Preparing for the addition of nil

This commit is contained in:
Jeremy Wall 2023-06-04 20:18:36 -04:00
parent 5e10b30423
commit 9abc2f6952
2 changed files with 12 additions and 1 deletions

View File

@ -110,6 +110,7 @@
inputs.durnitisp
inputs.jj
inputs.age
#inputs.nil
# TODO add sonic-pi here if it supports the arch
];

View File

@ -6,6 +6,7 @@
darwin.url = "github:lnl7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs";
runwhen.url = "github:zaphar/runwhen?ref=v0.0.5";
#nil.url = "github:oxalica/nil/2023-05-09";
durnitisp.url = "github:zaphar/durnitisp";
agenix.url = "github:ryantm/agenix";
rust-overlay = {
@ -15,7 +16,15 @@
jj.url = "github:martinvonz/jj";
};
outputs = {self, nixpkgs, darwin, runwhen, durnitisp, rust-overlay, jj, agenix }:
outputs = {self, nixpkgs,
darwin,
runwhen,
durnitisp,
rust-overlay,
jj,
agenix,
#nil,
}:
let
forSystem = (system:
let
@ -35,6 +44,7 @@
sile = pkgs.sile.overrideAttrs(oldAttrs: { doCheck = false; meta.broken = false; });
jj = jj.defaultPackage."${system}";
age = agenix.packages."${system}".default;
#nil = nil.packages."${system}".default;
};
});
in