taskwarrior3 migration, various stuff used for class

This commit is contained in:
Tao Tien 2024-08-21 18:31:46 -07:00
parent 2735980efe
commit 3ebbaf2800
5 changed files with 38 additions and 5 deletions

View file

@ -81,6 +81,32 @@ in {
extraConfig = builtins.readFile ./nushell/stuff.nu;
};
ssh = {
enable = true;
addKeysToAgent = "yes";
compression = true;
matchBlocks = {
"stargate" = {
hostname = "stargate.cs.usfca.edu";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
};
"beagle" = {
hostname = "beagle";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
proxyCommand = "ssh stargate -W %h:%p";
};
"github" = {
hostname = "github.com";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
};
};
};
starship = {
enable = true;
enableNushellIntegration = true;