dotfiles/nixos/boxes/skinnyv/configuration.nix

33 lines
727 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
2020-01-03 14:28:53 +00:00
boot = {
2020-05-19 20:07:56 +01:00
kernelPackages = pkgs.linuxPackages_latest;
2020-04-29 11:00:10 +01:00
initrd.luks.devices = {
root =
{
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
2020-05-19 20:07:56 +01:00
../../boot.nix
../../common.nix
../../gfx-intel.nix
../../zerotier.nix
../../i3/system.nix
../../distributed-builds.nix
2019-07-07 12:08:00 +01:00
];
}