even more home-manager

This commit is contained in:
Dustin Swan 2019-04-14 11:04:49 -04:00
parent 0502af997c
commit bdf3284011
No known key found for this signature in database
GPG key ID: AB49BD6B2B3A6377
3 changed files with 22 additions and 3 deletions

View file

@ -113,6 +113,26 @@
enableZshIntegration = true;
};
programs.ssh = {
enable = true;
matchBlocks = {
visionable = {
hostname = "dswan.visionable.com";
user = "ec2-user";
};
dswan = {
hostname = "dswan.iocom.com";
user = "root";
};
dustinswan = {
hostname = "dustinswan.com";
user = "dustinswan";
};
};
};
programs.git = {
enable = true;
userName = "Dustin Swan";
@ -136,6 +156,4 @@
customRC = builtins.readFile ~/dotfiles/vimrc;
};
};
imports = [ ./linux.nix ];
}