NixOS-Config/home/jimbo_ssh.nix
2024-09-23 16:36:46 -04:00

15 lines
293 B
Nix

{
imports = [
# Common modules
./home.nix
./users/jimbo.nix
];
# Rebuild this entire system
programs.zsh = {
shellAliases = {
sshswitch = "home-manager switch --flake ~/.home-manager/.#jimbo@SSH --extra-experimental-features 'nix-command flakes'";
};
};
}