dotfiles/nixos/boxes/thinky.nix
2019-07-07 12:08:00 +01:00

25 lines
504 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "thinky";
boot = {
initrd.luks.devices = [
{
name = "root";
device = "/dev/disk/by-uuid/962caed1-9dd5-4771-9a8f-3d3f5854af2e";
preLVM = true;
allowDiscards = true;
}];
loader.grub = {
device = "/dev/sda";
};
};
time.timeZone = "Europe/Warsaw";
imports = [
/etc/nixos/hardware-configuration.nix
../boot.nix
../common.nix
../gfx-intel.nix
];
}