nixos-config/machines/apache/configuration.nix

17 lines
353 B
Nix
Raw Normal View History

2022-06-18 14:16:12 +00:00
{ config, pkgs, ... }:
2022-06-17 14:13:13 +00:00
{
2022-06-18 14:46:22 +00:00
networking.hostName = "apache";
2022-06-18 14:16:12 +00:00
2022-06-18 14:46:22 +00:00
boot.loader.grub.enableCryptodisk = true;
2022-06-17 14:13:13 +00:00
2022-06-18 14:16:12 +00:00
boot.initrd.luks.devices = {
2022-06-18 14:46:22 +00:00
# crypt-nixos.device = "/dev/disk/by-uuid/4345618c-6968-465f-8ebd-1d76defc0f57";
# crypt-swap.device = "/dev/disk/by-uuid/fa3440af-0354-4299-860e-01a3b012416f";
2022-06-18 14:16:12 +00:00
};
networking.wireless.enable = true;
2022-06-17 14:13:13 +00:00
}