forked from pub-solar/os
11 lines
258 B
Nix
11 lines
258 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
pub-solar.core.disk-encryption-active = false;
|
||
|
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
|
||
|
systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ];
|
||
|
networking.networkmanager.enable = false;
|
||
|
}
|