Add a new desktop lol
This commit is contained in:
parent
e6f6701c00
commit
f16588034d
6 changed files with 127 additions and 1 deletions
17
hosts/detritus/system/boot/default.nix
Normal file
17
hosts/detritus/system/boot/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
kernel.sysctl."vm.max_map_count" = 2147483642;
|
||||
initrd = {
|
||||
systemd.enable = true;
|
||||
luks.devices = {
|
||||
crypt-hhd = {
|
||||
device = "/dev/disk/by-uuid/0ab46868-3c54-4a19-bf30-93855eac0a86";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue