patos/modules/minimize.nix
Daniel Lundin b16bf9bcb8
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
feat(sysupdate): Download from dl.patagia.dev. Add gpg authentication.
2024-10-04 00:12:42 +02:00

20 lines
437 B
Nix

{ modulesPath, ... }:
{
imports = [
"${modulesPath}/profiles/minimal.nix"
];
boot.enableContainers = false;
boot.loader.grub.enable = false;
system.switch.enable = false;
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 = [ ];
}