dotfiles/nixos/boxes/skinnyv/configuration.nix
Cyryl Płotnicki c2271eac15 update skinny
2020-05-19 20:07:56 +01:00

33 lines
727 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
boot = {
kernelPackages = pkgs.linuxPackages_latest;
initrd.luks.devices = {
root =
{
device = "/dev/disk/by-uuid/ef6e91d9-c477-4ab7-ae39-4a0ee413cebe";
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
../../zerotier.nix
../../i3/system.nix
../../distributed-builds.nix
];
}