taskwarrior3 migration, various stuff used for class
This commit is contained in:
parent
2735980efe
commit
3ebbaf2800
5 changed files with 38 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue