1
Fork 0
satellite/hosts/nixos/iso/default.nix

24 lines
521 B
Nix
Raw Normal View History

2024-08-27 13:30:17 +02:00
{ modulesPath, ... }:
2024-08-26 17:38:47 +02:00
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
2024-08-27 13:30:17 +02:00
../common/global
../common/optional/wayland/hyprland.nix
2024-08-26 17:38:47 +02:00
];
2024-08-27 13:30:17 +02:00
# Tell sops-nix to use the hermes keys for decrypting secrets
sops.age.sshKeyPaths = [ "/hermes/secrets/hermes/ssh_host_ed25519_key" ];
# {{{ Automount hermes
fileSystems."/hermes" = {
device = "/dev/disk/by-uuid/7FE7-CA68";
neededForBoot = true;
options = [
"nofail"
"x-systemd.automount"
];
};
# }}}
2024-08-26 17:38:47 +02:00
}