dotfiles/nixos/boxes/thinky.nix
2019-04-26 09:04:38 +01:00

19 lines
391 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "thinky";
boot = {
initrd.luks.devices = [
{
name = "root";
device = "/dev/disk/by-uuid/------------------------------------";
preLVM = true;
allowDiscards = true;
}];
loader.grub = {
device = "nodev";
};
};
time.timeZone = "Europe/Warsaw";
imports = [ ../common.nix ];
}