mac changes

This commit is contained in:
mjallen18
2024-08-22 11:37:36 -05:00
parent 2183faa2bd
commit a8dfd2b7da
2 changed files with 22 additions and 2 deletions

View File

@@ -65,7 +65,7 @@
users.users.matt = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.fish;
shell = pkgs.zsh;
packages = with pkgs; [
firefox
tree

View File

@@ -7,8 +7,28 @@
programs.home-manager.enable = true;
programs = {
fish.enable = true;
fish.enable = false;
java.enable = true;
zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -alh";
update = "sudo nixos-rebuild switch";
nas-update = "nixos-rebuild switch --use-remote-sudo --target-host admin@jallen-nas.local --build-host localhost --flake ~/nix-config/flake.nix#jallen-nas";
nas-ssh = "ssh admin@jallen-nas.local";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "fishy";
};
};
};
programs.git = {