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;
|
loader.efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
|
|
||||||
|
virtualisation.virtualbox.host = {
|
||||||
|
enable = true;
|
||||||
|
enableExtensionPack = true;
|
||||||
|
enableHardening = false; #needed for 3D acceleration
|
||||||
|
};
|
||||||
|
|
||||||
imports = [ ../common.nix ];
|
imports = [ ../common.nix ];
|
||||||
}
|
}
|
|
@ -6,12 +6,12 @@
|
||||||
initrd.luks.devices = [
|
initrd.luks.devices = [
|
||||||
{
|
{
|
||||||
name = "root";
|
name = "root";
|
||||||
device = "/dev/disk/by-uuid/------------------------------------";
|
device = "/dev/disk/by-uuid/962caed1-9dd5-4771-9a8f-3d3f5854af2e";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
allowDiscards = true;
|
allowDiscards = true;
|
||||||
}];
|
}];
|
||||||
loader.grub = {
|
loader.grub = {
|
||||||
device = "nodev";
|
device = "/dev/sda";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
time.timeZone = "Europe/Warsaw";
|
time.timeZone = "Europe/Warsaw";
|
||||||
|
|
|
@ -54,11 +54,6 @@ in
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.virtualbox.host = {
|
|
||||||
enable = true;
|
|
||||||
enableExtensionPack = true;
|
|
||||||
enableHardening = false; #needed for 3D acceleration
|
|
||||||
};
|
|
||||||
|
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue