Add mold to darwin
This commit is contained in:
parent
fab273bf4e
commit
18a1b48e46
|
@ -14,6 +14,7 @@ with nLib; {
|
||||||
../common/programs/terminal.nix
|
../common/programs/terminal.nix
|
||||||
./programs/core.nix
|
./programs/core.nix
|
||||||
./programs/emacs.nix
|
./programs/emacs.nix
|
||||||
|
./programs/devel.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
let
|
||||||
|
devel = config.nathan.programs.devel;
|
||||||
|
unstable = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}";
|
||||||
|
inherit (import ../../../modules/lib.nix {
|
||||||
|
inherit lib;
|
||||||
|
inherit pkgs;
|
||||||
|
})
|
||||||
|
nLib;
|
||||||
|
|
||||||
|
in with lib;
|
||||||
|
with nLib; {
|
||||||
|
config = mkMerge [
|
||||||
|
# Core development utilites
|
||||||
|
(mkIf devel.core {
|
||||||
|
home.packages = with pkgs;
|
||||||
|
# Experimental mold!
|
||||||
|
[ unstable.mold ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue