diff options
author | Soispha <soispha@vhack.eu> | 2023-07-29 23:57:25 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-30 00:20:59 +0200 |
commit | 83633a6d06d7846b69212d17f437adfacd55c0b1 (patch) | |
tree | d76f981a55b21f14a83c6e339079ab1ed88cd320 | |
parent | Feat(treewide): Add enable options for secrets and impermanence (diff) | |
download | nixos-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.
-rw-r--r-- | hosts/isimud/default.nix | 7 |
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; |