patos/modules/minimize.nix
Daniel Lundin d65e479bef
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Add custom kernel config to shrink the image size
2024-10-13 22:51:23 +02:00

17 lines
337 B
Nix

{ modulesPath, ... }:
{
imports = [
"${modulesPath}/profiles/minimal.nix"
];
nix.enable = false;
system.disableInstallerTools = true;
system.etc.overlay.enable = true;
systemd.sysusers.enable = true;
programs.less.lessopen = null;
programs.command-not-found.enable = false;
environment.defaultPackages = [ ];
}