PatOS is born!
This commit is contained in:
parent
0f3b2072f4
commit
44d8f9c90d
12 changed files with 383 additions and 0 deletions
modules
19
modules/minimize.nix
Normal file
19
modules/minimize.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ modulesPath, ... }: {
|
||||
imports = [
|
||||
"${modulesPath}/profiles/minimal.nix"
|
||||
];
|
||||
|
||||
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;
|
||||
boot.enableContainers = false;
|
||||
environment.defaultPackages = [ ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue