dotfiles/nixos/boxes/skinnyv.nix

30 lines
666 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
boot = {
kernelParams = [
"i915.enable_rc6=7"
];
initrd.luks.devices = [
{
name = "root";
device = "/dev/disk/by-uuid/8c76bf01-59b3-4c60-b853-e9cb77f3ca14";
preLVM = true;
allowDiscards = true;
}];
loader.grub = {
device = "nodev";
efiSupport = true;
};
loader.efi.canTouchEfiVariables = true;
};
2019-04-26 07:58:38 +01:00
time.timeZone = "Europe/London";
2019-04-26 11:30:22 +01:00
virtualisation.virtualbox.host = {
enable = true;
enableExtensionPack = true;
enableHardening = false; #needed for 3D acceleration
};
imports = [ ../common.nix ];
2019-04-21 10:18:35 +01:00
}