nix-config/hosts/common/optional/encrypted-root.nix

8 lines
170 B
Nix
Raw Normal View History

{ config, ... }:
let hostname = config.networking.hostName;
in {
boot.initrd = {
luks.devices."${hostname}".device = "/dev/disk/by-label/${hostname}_crypt";
};
}