1
Fork 0
satellite/hosts/nixos/iso/default.nix
2024-08-27 22:11:56 +02:00

67 lines
1.5 KiB
Nix

# See the wiki for more details https://wiki.nixos.org/wiki/Creating_a_NixOS_live_CD
#
# Can be built with
# nix build .#nixosConfigurations.iso.config.system.build.isoImage
{
modulesPath,
inputs,
outputs,
pkgs,
...
}:
{
# {{{ Imports
imports = builtins.attrValues outputs.nixosModules ++ [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
inputs.sops-nix.nixosModules.sops
../common/global/wireless
../common/global/cli/fish.nix
../common/optional/services/kanata.nix
];
# }}}
# {{{ Automount hermes
fileSystems."/hermes" = {
device = "/dev/disk/by-uuid/41311200-3403-4324-9ad3-4fc45a061152";
neededForBoot = true;
options = [
"nofail"
"x-systemd.automount"
];
};
# }}}
# {{{ Nix config
nix = {
# Flake support and whatnot
package = pkgs.lix;
# Enable flakes and new 'nix' command
settings.experimental-features = [
"nix-command"
"flakes"
];
};
# }}}
# Tell sops-nix to use the hermes keys for decrypting secrets
sops.age.sshKeyPaths = [ "/hermes/secrets/hermes/ssh_host_ed25519_key" ];
environment.systemPackages =
let
cloneConfig = pkgs.writeShellScriptBin "liftoff" ''
git clone git@github.com:prescientmoon/everything-nix.git
cd everything-nix
'';
in
with pkgs;
[
sops # Secret editing
neovim # Text editor
cloneConfig # Clones my nixos config from github
];
# Fast but bad compression
# isoImage.squashfsCompression = "gzip -Xcompression-level 1";
}