nixos-config/profiles/server.nix

11 lines
140 B
Nix
Raw Normal View History

2019-12-25 15:20:36 -08:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
];
boot.tmpOnTmpfs = true;
services.xserver.enable = false;
}