Add thinky config
This commit is contained in:
parent
5e728ae529
commit
0fe50f8d74
3 changed files with 17 additions and 1 deletions
|
@ -13,5 +13,6 @@
|
||||||
allowDiscards = true;
|
allowDiscards = true;
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
time.timeZone = "Europe/London";
|
||||||
imports = [ ../common.nix ];
|
imports = [ ../common.nix ];
|
||||||
}
|
}
|
16
nixos/boxes/thinky.nix
Normal file
16
nixos/boxes/thinky.nix
Normal 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 ];
|
||||||
|
}
|
|
@ -103,7 +103,6 @@ in
|
||||||
|
|
||||||
security.pam.services.gdm.enableGnomeKeyring = true;
|
security.pam.services.gdm.enableGnomeKeyring = true;
|
||||||
|
|
||||||
time.timeZone = "Europe/London";
|
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
hardware.pulseaudio.enable = true;
|
hardware.pulseaudio.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue