mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
a7e1ea970b
The switch-to-configuration-ng program provides a perl-free way of switching nixos systems, we can use it for the perlless profile.
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
# WARNING: If you enable this profile, you will NOT be able to switch to a new
|
|
# configuration and thus you will not be able to rebuild your system with
|
|
# nixos-rebuild!
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
# switch-to-configuration-ng reimplements switch-to-configuration, but
|
|
# without perl.
|
|
system.switch = lib.mkDefault {
|
|
enable = false;
|
|
enableNg = true;
|
|
};
|
|
|
|
# Remove perl from activation
|
|
boot.initrd.systemd.enable = lib.mkDefault true;
|
|
system.etc.overlay.enable = lib.mkDefault true;
|
|
systemd.sysusers.enable = lib.mkDefault true;
|
|
|
|
# Random perl remnants
|
|
system.disableInstallerTools = lib.mkDefault true;
|
|
programs.less.lessopen = lib.mkDefault null;
|
|
programs.command-not-found.enable = lib.mkDefault false;
|
|
boot.enableContainers = lib.mkDefault false;
|
|
environment.defaultPackages = lib.mkDefault [ ];
|
|
documentation.info.enable = lib.mkDefault false;
|
|
|
|
# Check that the system does not contain a Nix store path that contains the
|
|
# string "perl".
|
|
system.forbiddenDependenciesRegexes = ["perl"];
|
|
|
|
}
|