aboutsummaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2026-01-05 18:38:59 -0800
committerFranck Cuny <franck@fcuny.net>2026-01-05 18:38:59 -0800
commit553600d88bd4c23412e4d8926d2af20ee84379a2 (patch)
tree6b0d59564faa7d03239ac08aec4bff1293046d56 /machines
parentsimplify ssh configuration (diff)
downloadinfra-553600d88bd4c23412e4d8926d2af20ee84379a2.tar.gz
don't use 1password ssh agent
Diffstat (limited to '')
-rw-r--r--machines/mbp-work.nix15
1 files changed, 1 insertions, 14 deletions
diff --git a/machines/mbp-work.nix b/machines/mbp-work.nix
index a7b80c6..618f536 100644
--- a/machines/mbp-work.nix
+++ b/machines/mbp-work.nix
@@ -1,9 +1,4 @@
-{
- adminUser,
- pkgs,
- lib,
- ...
-}:
+{ adminUser, pkgs, ... }:
{
imports = [
../profiles/darwin.nix
@@ -33,18 +28,10 @@
tfswitch
vault
];
- programs.onepassword.sshKeys = lib.mkAfter [
- {
- account = "roblox.1password.com";
- vault = "Private";
- }
- ];
programs.ssh.matchBlocks."github.rbx.com" = {
hostname = "github.rbx.com";
user = "git";
- forwardAgent = false;
extraOptions = {
- preferredAuthentications = "publickey";
controlMaster = "no";
controlPath = "none";
};