This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/machines/apache/configuration.nix

9 lines
163 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "apache";
boot.loader.grub.enableCryptodisk = true;
services.xserver.videoDrivers = [ "intel" "nvidia" ];
}