Skip to content

Commit

Permalink
disable onlykey gpg support on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
kalbasit committed May 28, 2022
1 parent cb4d405 commit e094873
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/hardware/onlykey/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ in
{
home.packages =
[
onlykey-agent
onlykey-cli
] ++ optionals (isLinux) [ onlykey ];
}
Expand All @@ -61,6 +60,8 @@ in
executable = true;
};

home.packages = singleton onlykey-agent;

programs.gpg = {
enable = true;

Expand Down
3 changes: 2 additions & 1 deletion profiles/workstation/darwin/local/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ in
ssh-support.enable = true;

gnupg-support = {
enable = true;
# TODO: the onlykey-agent no longer builds on darwin
enable = false;

default-key = "[email protected]";

Expand Down

0 comments on commit e094873

Please sign in to comment.