dotfiles/nixos/boxes/skinnyv.nix

31 lines
677 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
boot = {
2019-08-10 09:56:37 +01:00
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"i915.enable_rc6=7"
];
initrd.luks.devices = [
{
name = "root";
2019-08-10 09:51:21 +01:00
device = "/dev/disk/by-uuid/ef6e91d9-c477-4ab7-ae39-4a0ee413cebe";
preLVM = true;
allowDiscards = true;
}];
2019-07-07 12:08:00 +01:00
loader.grub = {
device = "nodev";
efiSupport = true;
};
loader.efi.canTouchEfiVariables = true;
};
2019-07-07 12:08:00 +01:00
time.timeZone = "Europe/London";
2019-04-26 11:30:22 +01:00
2019-07-07 12:08:00 +01:00
imports = [
/etc/nixos/hardware-configuration.nix
../boot.nix
../common.nix
../gfx-intel.nix
];
}