15 lines
314 B
Nix
15 lines
314 B
Nix
{
|
|
imports = [
|
|
# Common modules
|
|
./../../base.nix
|
|
./../../users/jimbo.nix
|
|
];
|
|
|
|
# Rebuild this entire system
|
|
programs.zsh = {
|
|
shellAliases = {
|
|
termswitch = "home-manager switch --flake ~/.home-manager/.#jimbo@JimTerminal --extra-experimental-features 'nix-command flakes'";
|
|
};
|
|
};
|
|
}
|