removed kdeconnect because of unnecesserity and added nix home configurations and added ohmyposh for the zsh

This commit is contained in:
Robin
2025-09-29 18:31:35 +02:00
parent f35e0bd637
commit db1a3e0b53
12 changed files with 259 additions and 67 deletions

21
.config/nixpkgs/home.nix Normal file
View File

@@ -0,0 +1,21 @@
programs.zsh = {
enable = true;
enableCompletions = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
alias vim="nvim";
alias cls="clear";
alias femboy="echo '$USER is a femboy'";
alias shut="shutdown now";
alias re="reboot";
alias ls="exa";
alias switchhack="fusee-nano ~/Downloads/switchhack/hekate_ctcaer_6.3.0.bin";
alias ssh_t='(){ ssh $1 -t tmux;}';
alias sshserver="ssh -i ~/.ssh/GlaServer00 glala@81.21.121.109";
};
history.size = 10000;
};