2023-04-13 22:08:30 +02:00
|
|
|
# This module optimizes for non-interactive deployments by remove some store paths
|
|
|
|
# which are primarily useful for interactive installations.
|
|
|
|
|
2024-01-03 10:53:53 +01:00
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
{
|
2023-04-13 22:08:30 +02:00
|
|
|
disabledModules = [
|
|
|
|
# This module adds values to multiple lists (systemPackages, supportedFilesystems)
|
|
|
|
# which are impossible/unpractical to remove, so we disable the entire module.
|
|
|
|
"profiles/base.nix"
|
|
|
|
];
|
|
|
|
|
2024-01-03 10:53:53 +01:00
|
|
|
imports = [
|
|
|
|
./zfs-minimal.nix
|
2024-05-19 13:07:31 +02:00
|
|
|
./no-bootloaders.nix
|
2024-01-03 10:53:53 +01:00
|
|
|
];
|
|
|
|
|
2023-04-13 22:08:30 +02:00
|
|
|
# among others, this prevents carrying a stdenv with gcc in the image
|
2023-06-11 06:48:02 +02:00
|
|
|
system.extraDependencies = lib.mkForce [ ];
|
2023-04-13 22:08:30 +02:00
|
|
|
|
|
|
|
# prevents shipping nixpkgs, unnecessary if system is evaluated externally
|
2023-06-11 06:48:02 +02:00
|
|
|
nix.registry = lib.mkForce { };
|
2023-04-13 22:08:30 +02:00
|
|
|
|
|
|
|
# would pull in nano
|
2024-05-19 16:15:11 +02:00
|
|
|
programs.nano.enable = false;
|
2023-04-13 22:08:30 +02:00
|
|
|
|
2024-05-19 16:15:11 +02:00
|
|
|
# prevents strace
|
|
|
|
environment.defaultPackages = lib.mkForce [ pkgs.rsync pkgs.parted pkgs.gptfdisk ];
|
2023-04-13 22:08:30 +02:00
|
|
|
|
2023-06-11 06:48:02 +02:00
|
|
|
# we are missing this from base.nix
|
|
|
|
boot.supportedFilesystems = [
|
|
|
|
"btrfs"
|
|
|
|
# probably not needed but does not seem to increase closure size
|
|
|
|
"cifs"
|
|
|
|
"f2fs"
|
|
|
|
## anyone still using this over ext4?
|
|
|
|
#"jfs"
|
|
|
|
"ntfs"
|
|
|
|
## no longer seems to be maintained, anyone still using it?
|
|
|
|
#"reiserfs"
|
|
|
|
"vfat"
|
|
|
|
"xfs"
|
|
|
|
];
|
2024-01-03 10:53:53 +01:00
|
|
|
boot.kernelModules = [
|
|
|
|
# we have to explicitly enable this, otherwise it is not loaded even when creating a raid:
|
|
|
|
# https://github.com/nix-community/nixos-anywhere/issues/249
|
|
|
|
"dm-raid"
|
|
|
|
];
|
2023-04-13 22:08:30 +02:00
|
|
|
}
|