nixos-config/machines/yoga/configuration.nix

9 lines
152 B
Nix
Raw Normal View History

2022-08-25 18:42:40 +00:00
{ config, pkgs, ... }:
{
networking.hostName = "yoga";
boot.loader.grub.enableCryptodisk = true;
services.xserver.videoDrivers = [ "intel" ];
}