Add thinky config

This commit is contained in:
Cyryl Płotnicki 2019-04-26 07:58:38 +01:00
parent 5e728ae529
commit 0fe50f8d74
3 changed files with 17 additions and 1 deletions

View file

@ -13,5 +13,6 @@
allowDiscards = true;
}];
};
time.timeZone = "Europe/London";
imports = [ ../common.nix ];
}

16
nixos/boxes/thinky.nix Normal file
View file

@ -0,0 +1,16 @@
{ 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 ];
}

View file

@ -103,7 +103,6 @@ in
security.pam.services.gdm.enableGnomeKeyring = true;
time.timeZone = "Europe/London";
sound.enable = true;
hardware.pulseaudio.enable = true;