diff --git a/home-manager/default.nix b/home-manager/default.nix index 2656d48..55cac77 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -140,24 +140,6 @@ in # e.g. for vscode nixpkgs.config.allowUnfree = true; - programs.zsh = { - enable = true; - oh-my-zsh = { - enable = true; - plugins = [ "git" "fzf" ]; - theme = "kolo"; - }; - history = { - share = false; # every terminal has it's own history - size = 10000; - }; - shellAliases = { - "dl" = "ls -lhtr --color=always ~/Downloads | tail -n 10"; # Show the 10 newest Downloads - "notes" = "vim ~/codemonauts/notes.md"; # Open my work notes - "buzzer" = "ssh -i Nextcloud/Privat/id_door door@door.w17.io buzzer"; - }; - }; - programs.git = { enable = true; userName = "fleaz";