noninteractive: bring rsync back
We need this in nixos-anywhere to upload files.
This commit is contained in:
parent
340303d82b
commit
1408e3ed2a
1 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
# This module optimizes for non-interactive deployments by remove some store paths
|
||||
# which are primarily useful for interactive installations.
|
||||
|
||||
{ config, lib, ... }: {
|
||||
{ config, lib, pkgs, ... }: {
|
||||
disabledModules = [
|
||||
# This module adds values to multiple lists (systemPackages, supportedFilesystems)
|
||||
# which are impossible/unpractical to remove, so we disable the entire module.
|
||||
|
@ -11,15 +11,14 @@
|
|||
# among others, this prevents carrying a stdenv with gcc in the image
|
||||
system.extraDependencies = lib.mkForce [];
|
||||
|
||||
|
||||
# prevents shipping nixpkgs, unnecessary if system is evaluated externally
|
||||
nix.registry = lib.mkForce {};
|
||||
|
||||
# would pull in nano
|
||||
programs.nano.syntaxHighlight = lib.mkForce false;
|
||||
|
||||
# prevents nano, rsync, strace
|
||||
environment.defaultPackages = lib.mkForce [];
|
||||
# prevents nano, strace
|
||||
environment.defaultPackages = lib.mkForce [ pkgs.rsync ];
|
||||
|
||||
# zfs support is accidentally disabled by excluding base.nix, re-enable it
|
||||
boot = {
|
||||
|
|
Loading…
Reference in a new issue