1
Fork 0

Improve custom iso

This commit is contained in:
prescientmoon 2024-08-27 13:30:17 +02:00
parent 2357c5d3d6
commit 1b180a8a25
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
4 changed files with 57 additions and 18 deletions
hosts/nixos/iso

View file

@ -1,13 +1,23 @@
{ modulesPath, pkgs, ... }:
{ modulesPath, ... }:
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
../common/global/services/openssh.nix
../common/global/locale.nix
../common/global/cli/fish.nix
../common/global/nix.nix
../common/global
../common/optional/wayland/hyprland.nix
];
environment.systemPackages = [ pkgs.neovim ];
# 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"
];
};
# }}}
}