nixos-config/profiles/server.nix
2020-01-15 11:24:11 -06:00

17 lines
219 B
Nix

{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
];
noXlibs = true;
};
security.hideProcessInformation = true;
boot.tmpOnTmpfs = true;
services.xserver.enable = false;
}