2019-04-21 10:18:35 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
networking.hostName = "skinnyv";
|
2019-04-26 07:53:13 +01:00
|
|
|
boot = {
|
|
|
|
kernelParams = [
|
|
|
|
"i915.enable_rc6=7"
|
|
|
|
];
|
|
|
|
initrd.luks.devices = [
|
2019-04-26 07:21:51 +01:00
|
|
|
{
|
|
|
|
name = "root";
|
|
|
|
device = "/dev/disk/by-uuid/8c76bf01-59b3-4c60-b853-e9cb77f3ca14";
|
|
|
|
preLVM = true;
|
|
|
|
allowDiscards = true;
|
|
|
|
}];
|
2019-04-26 09:04:38 +01:00
|
|
|
loader.grub = {
|
|
|
|
device = "nodev";
|
|
|
|
efiSupport = true;
|
|
|
|
};
|
|
|
|
loader.efi.canTouchEfiVariables = true;
|
2019-04-26 07:53:13 +01:00
|
|
|
};
|
2019-04-26 07:58:38 +01:00
|
|
|
time.timeZone = "Europe/London";
|
2019-04-26 11:30:22 +01:00
|
|
|
|
2019-06-30 13:59:03 +01:00
|
|
|
imports = [
|
|
|
|
/etc/nixos/hardware-configuration.nix
|
|
|
|
../boot.nix
|
|
|
|
../common.nix
|
2019-07-06 07:43:37 +01:00
|
|
|
../gfx-intel.nix
|
2019-07-07 08:56:14 +01:00
|
|
|
../virtualbox.nix
|
2019-06-30 13:59:03 +01:00
|
|
|
];
|
|
|
|
}
|