2024-09-10 15:29:32 -04:00
|
|
|
{
|
2024-08-27 15:17: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'";
|
2024-08-27 15:17:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|