Add a public profile for SSH envrionments

This commit is contained in:
Jimbo 2024-08-27 13:17:32 -06:00
parent 13e01134f6
commit 5cb86ebafe
5 changed files with 28 additions and 1 deletions

View file

@ -81,6 +81,14 @@
./home-manager/jimbo_server.nix
];
};
# Derivation for ssh envrionments on other people's servers
"jimbo@SSH" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {inherit inputs outputs;};
modules = [
./home-manager/jimbo_ssh.nix
];
};
};
};
}