NixOS-Config/home-manager/jimbo_ssh.nix

19 lines
374 B
Nix
Raw Normal View History

{config, ...}: {
imports = [
# Common modules
./home.nix
./users/jimbo.nix
];
# Rebuild this entire system
programs.zsh = {
shellAliases = let
auth = import ./common/auth.nix;
in {
nixdate = ''
2024-08-27 16:20:38 -04:00
home-manager switch --flake ~/.home-manager/.#jimbo@SSH --extra-experimental-features "nix-command flakes"
'';
};
};
}