nixos-config/machines/yoga/configuration.nix

9 lines
152 B
Nix

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