virt changes including new NixVirt input

This commit is contained in:
Bryan Ramos 2025-01-27 16:23:01 -05:00
parent 3e6621fa2a
commit 01730af9ee
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
14 changed files with 341 additions and 30 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }:
{ pkgs, lib, config, osConfig, ... }:
with lib;
let
@ -18,10 +18,12 @@ in
text = "${config.user.keys.pgp.primary}";
trust = 5;
}
] ++ optionals (osConfig.networking.hostName == "desktop") [
{
text = "${config.user.keys.pgp.windows}";
trust = 5;
}
] ++ optionals (osConfig.networking.hostName == "workstation") [
{
text = "${config.user.keys.pgp.work}";
trust = 5;