mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
nix-tools = pkgs.callPackage ../../pkgs/nix-tools {
|
|
inherit (config.system) profile;
|
|
inherit (config.environment) systemPath;
|
|
nixPackage = config.nix.package;
|
|
};
|
|
|
|
darwin-uninstaller = pkgs.callPackage ../../pkgs/darwin-uninstaller { };
|
|
|
|
inherit (nix-tools) darwin-option darwin-rebuild darwin-version;
|
|
in
|
|
|
|
{
|
|
options.system = {
|
|
disableInstallerTools = lib.mkOption {
|
|
type = lib.types.bool;
|
|
internal = true;
|
|
default = false;
|
|
description = ''
|
|
Disable darwin-rebuild and darwin-option. This is useful to shrink
|
|
systems which are not expected to rebuild or reconfigure themselves.
|
|
Use at your own risk!
|
|
'';
|
|
};
|
|
|
|
includeUninstaller = lib.mkOption {
|
|
type = lib.types.bool;
|
|
internal = true;
|
|
default = true;
|
|
};
|
|
};
|
|
|
|
config = {
|
|
environment.systemPackages =
|
|
[ darwin-version ]
|
|
++ lib.optionals (!config.system.disableInstallerTools) [
|
|
darwin-option
|
|
darwin-rebuild
|
|
] ++ lib.optional config.system.includeUninstaller darwin-uninstaller;
|
|
|
|
system.build = {
|
|
inherit darwin-option darwin-rebuild darwin-version;
|
|
};
|
|
};
|
|
}
|