17 lines
353 B
Nix
17 lines
353 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "apache";
|
|
|
|
boot.loader.grub.enableCryptodisk = true;
|
|
|
|
boot.initrd.luks.devices = {
|
|
# crypt-nixos.device = "/dev/disk/by-uuid/4345618c-6968-465f-8ebd-1d76defc0f57";
|
|
# crypt-swap.device = "/dev/disk/by-uuid/fa3440af-0354-4299-860e-01a3b012416f";
|
|
};
|
|
|
|
networking.wireless.enable = true;
|
|
|
|
}
|
|
|