modified: common/home.nix

This commit is contained in:
2025-07-16 19:29:59 +10:00
parent a32bd7d01a
commit 6c778865ce

View File

@@ -20,11 +20,13 @@ in {
programs.home-manager.enable = true; # mandatory to activate HM programs.home-manager.enable = true; # mandatory to activate HM
programs.bash.shellAliases = { programs.bash = {
"Switch-nix" = mySwitchCmd; enable = true;
"Test-nix" = myTestCmd; shellAliases = {
switch-nix = mySwitchCmd;
test-nix = mySwitchCmd;
}; };
};
# Optional: packages # Optional: packages
home.packages = with pkgs; [ home.packages = with pkgs; [
@@ -39,7 +41,7 @@ in {
}; };
# Optional: enable bash (or zsh, fish...) # Optional: enable bash (or zsh, fish...)
programs.bash.enable = true; # programs.bash.enable = true;
# Optional: manage dotfiles via symlinks # Optional: manage dotfiles via symlinks
# home.file = { # home.file = {