Skip to content

Commit

Permalink
gx not Ux!
Browse files Browse the repository at this point in the history
  • Loading branch information
rodent1 committed Aug 31, 2024
1 parent 812475d commit 236a391
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions homes/stianrs/hosts/gamer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# TODO: See if I can get this to work with home.sessionVariables instead
programs.fish.shellInit = ''
set -Ux OP_CONNECT_HOST (jq -r .host ${config.sops.secrets.op_connect.path})
set -Ux OP_CONNECT_TOKEN (jq -r .token ${config.sops.secrets.op_connect.path})
set -gx OP_CONNECT_HOST (jq -r .host ${config.sops.secrets.op_connect.path})
set -gx OP_CONNECT_TOKEN (jq -r .token ${config.sops.secrets.op_connect.path})
'';
}
4 changes: 2 additions & 2 deletions homes/stianrs/hosts/laptop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
};

programs.fish.shellInit = ''
set -Ux OP_CONNECT_HOST (jq -r .host ${config.sops.secrets.op_connect.path})
set -Ux OP_CONNECT_TOKEN (jq -r .token ${config.sops.secrets.op_connect.path})
set -gx OP_CONNECT_HOST (jq -r .host ${config.sops.secrets.op_connect.path})
set -gx OP_CONNECT_TOKEN (jq -r .token ${config.sops.secrets.op_connect.path})
'';
}

0 comments on commit 236a391

Please sign in to comment.