patos/modules/minimize.nix

17 lines
336 B
Nix
Raw Normal View History

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