forked from pub-solar/os
8 lines
252 B
Nix
8 lines
252 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;
|
|
}
|