NixOS-Config/home-manager/jimbo_ssh.nix

17 lines
343 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 = {
shellAliases = let
auth = import ./common/auth.nix;
in {
2024-09-10 15:29:32 -04:00
sshswitch = "home-manager switch --flake ~/.home-manager/.#jimbo@SSH --extra-experimental-features 'nix-command flakes'";
};
};
}