about summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-29 23:57:25 +0200
committerSoispha <soispha@vhack.eu>2023-07-30 00:20:59 +0200
commit83633a6d06d7846b69212d17f437adfacd55c0b1 (patch)
treed76f981a55b21f14a83c6e339079ab1ed88cd320 /hosts
parentFeat(treewide): Add enable options for secrets and impermanence (diff)
downloadnixos-config-83633a6d06d7846b69212d17f437adfacd55c0b1.tar.gz
nixos-config-83633a6d06d7846b69212d17f437adfacd55c0b1.zip
Fix(hosts/isimud): Add `onlykey` and `onlykey-agent` to the system
Having no internet connection, all required packages for Isimud need
to be provided before hand.
Diffstat (limited to 'hosts')
-rw-r--r--hosts/isimud/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/isimud/default.nix b/hosts/isimud/default.nix
index 8b772fef..e2eadb3d 100644
--- a/hosts/isimud/default.nix
+++ b/hosts/isimud/default.nix
@@ -1,10 +1,15 @@
-{...}: {
+{pkgs, ...}: {
   imports = [
     ./hardware
     ./networking.nix
     ../../system
   ];
 
+  environment.systemPackages = [
+    pkgs.onlykey
+    pkgs.onlykey-agent
+  ];
+
   soispha = {
     secrets.enable = false;
     impermanence.enable = false;