diff options
author | Soispha <soispha@vhack.eu> | 2023-07-30 16:47:18 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-30 16:47:18 +0200 |
commit | c2a96eb3834fd40788b5c78a1cb9b2fc30629b9f (patch) | |
tree | 9cff1edca9a06478d67ab4a2563e7433f871c00d /hosts/isimud/default.nix | |
parent | Fix(hosts/isimud): Add `onlykey` and `onlykey-agent` to the system (diff) | |
download | nixos-config-c2a96eb3834fd40788b5c78a1cb9b2fc30629b9f.zip |
Fix(hosts/isimud): Fully provide all dependencies
Diffstat (limited to 'hosts/isimud/default.nix')
-rw-r--r-- | hosts/isimud/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/isimud/default.nix b/hosts/isimud/default.nix index e2eadb3d..093afb26 100644 --- a/hosts/isimud/default.nix +++ b/hosts/isimud/default.nix @@ -5,9 +5,24 @@ ../../system ]; + isoImage = { + contents = [ + { + source = ./command-line.html; + # TODO: remove the implied dependency + target = "/home/soispha/cli.html"; + } + ]; + makeEfiBootable = true; + makeUsbBootable = true; + makeBiosBootable = true; + appendToMenuLabel = " Gpg-disk"; + }; environment.systemPackages = [ pkgs.onlykey + pkgs.onlykey-cli pkgs.onlykey-agent + pkgs.cryptsetup ]; soispha = { |