30 lines
624 B
Nix
30 lines
624 B
Nix
{ 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;
|
|
};
|
|
time.timeZone = "Europe/London";
|
|
|
|
imports = [
|
|
/etc/nixos/hardware-configuration.nix
|
|
../boot.nix
|
|
../common.nix
|
|
../gfx-intel.nix
|
|
../virtualbox.nix
|
|
];
|
|
}
|