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

16 lines
340 B
Nix

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