NixOS-Config/home/jimbo_ssh.nix

15 lines
293 B
Nix
Raw Normal View History

2024-09-10 15:29:32 -04:00
{
imports = [
# Common modules
./home.nix
./users/jimbo.nix
];
# Rebuild this entire system
programs.zsh = {
2024-09-23 16:36:46 -04:00
shellAliases = {
2024-09-10 15:29:32 -04:00
sshswitch = "home-manager switch --flake ~/.home-manager/.#jimbo@SSH --extra-experimental-features 'nix-command flakes'";
};
};
}