Add thinky
This commit is contained in:
parent
cfc3bc10c4
commit
9b134ee1d0
3 changed files with 10 additions and 8 deletions
|
@ -19,5 +19,12 @@
|
|||
loader.efi.canTouchEfiVariables = true;
|
||||
};
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
virtualisation.virtualbox.host = {
|
||||
enable = true;
|
||||
enableExtensionPack = true;
|
||||
enableHardening = false; #needed for 3D acceleration
|
||||
};
|
||||
|
||||
imports = [ ../common.nix ];
|
||||
}
|
|
@ -6,14 +6,14 @@
|
|||
initrd.luks.devices = [
|
||||
{
|
||||
name = "root";
|
||||
device = "/dev/disk/by-uuid/------------------------------------";
|
||||
device = "/dev/disk/by-uuid/962caed1-9dd5-4771-9a8f-3d3f5854af2e";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
}];
|
||||
loader.grub = {
|
||||
device = "nodev";
|
||||
device = "/dev/sda";
|
||||
};
|
||||
};
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
imports = [ ../common.nix ];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,11 +54,6 @@ in
|
|||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
virtualisation.virtualbox.host = {
|
||||
enable = true;
|
||||
enableExtensionPack = true;
|
||||
enableHardening = false; #needed for 3D acceleration
|
||||
};
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue