Compare commits

..

No commits in common. "f72f772cce2d17dc3b8ec08a13149a560a6570b0" and "a7ed1629e89b9c295a54857e48c6a74a5429f50d" have entirely different histories.

6 changed files with 4 additions and 21 deletions

0
modules/config/instances/config/wireGuard.nix Executable file → Normal file
View file

View file

@ -1,14 +1,9 @@
{ flake, ... }:
let
inherit (flake.config.people) user0;
in
{ {
programs.nushell = { programs.nushell = {
enable = true; enable = true;
configFile.text = '' configFile.text = ''
sleep 7ms sleep 7ms
$env.config = {show_banner: false} $env.config = {show_banner: false}
$env.ANTHROPIC_API_KEY = (open /home/${user0}/.config/zed/claude-api-key)
''; '';
shellAliases = { shellAliases = {
y = "yy"; y = "yy";

View file

@ -63,7 +63,6 @@ in
polychromatic polychromatic
dolphin dolphin
espanso espanso
claudeCode
; ;
}; };
}; };

View file

@ -1,11 +0,0 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
claude-code
;
};
}

0
modules/nixos/services/wireGuard/default.nix Executable file → Normal file
View file

View file

@ -61,10 +61,10 @@ in
path = "/home/${userLogic}/.ssh/known_hosts"; path = "/home/${userLogic}/.ssh/known_hosts";
owner = userLogic; owner = userLogic;
}; };
"claude-api-key" = { # "claude-api-key" = {
path = "/home/${user0}/.config/zed/claude-api-key"; # path = "/home/${user0}/.config/zed/claude-api-key";
owner = user0; # owner = user0;
}; # };
}; };
}; };
} }