dotfiles/nixos/boxes/thinky.nix

19 lines
391 B
Nix
Raw Normal View History

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