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