{ config, pkgs, ... }: { home = { packages = with pkgs; [ # Office aerc libreoffice-fresh obsidian thunderbird # Programming bacon colordiff docker-compose sublime-merge tig vscode-fhs # Graphics gimp graphicsmagick inkscape # Internet discord gnome.epiphany httpie remmina tdesktop w3m wget # Sound & Video easyeffects spotify # Gaming prismlauncher # System Tools borgbackup fd file gnome.gnome-system-monitor htop iotop killall lsof ncdu pika-backup powertop s-tui screen silver-searcher smartmontools sysstat tree usbutils virt-manager wl-clipboard yubikey-manager gnome.gnome-tweaks gnomeExtensions.openweather gnomeExtensions.night-theme-switcher libarchive p7zip unrar unzip zip ]; shellAliases = { ".." = "cd .."; "..." = "cd ../.."; "...." = "cd ../../.."; "....." = "cd ../../../.."; o = "xdg-open"; ncdu = "ncdu --color dark"; config = "vim /etc/nixos/configuration.nix"; hmconf = "vim /etc/nixos/common/home-manager.nix"; hmhconf = "vim /etc/nixos/common/home-manager/home.nix"; switch = "sudo nixos-rebuild switch"; nr = "nix run --impure"; ns = "nix-shell"; nsp = "nix-shell -p"; cdnix = "cd /etc/nixos"; ga = "${pkgs.git}/bin/git add"; gb = "${pkgs.git}/bin/git branch"; gba = "${pkgs.git}/bin/git branch -a"; gbd = "${pkgs.git}/bin/git branch -d"; gc = "${pkgs.git}/bin/git commit"; gca = "${pkgs.git}/bin/git commit --amend"; gcan = "${pkgs.git}/bin/git commit --amend --no-edit"; gcl = "${pkgs.git}/bin/git clone"; gcm = "${pkgs.git}/bin/git commit -m"; gco = "${pkgs.git}/bin/git checkout"; gcob = "${pkgs.git}/bin/git checkout -b"; gcom = "${pkgs.git}/bin/git remote show origin | sed -n '/HEAD branch/s/.*: //p' | xargs git checkout"; gf = "${pkgs.git}/bin/git fetch"; gfp = "${pkgs.git}/bin/git fetch --prune"; gl = "${pkgs.git}/bin/git pull"; gla = "${pkgs.git}/bin/git pull --autostash"; gp = "${pkgs.git}/bin/git push"; gpf = "${pkgs.git}/bin/git push --force-with-lease"; gr = "${pkgs.git}/bin/git reset"; grs = "${pkgs.git}/bin/git reset --soft"; gs = "${pkgs.git}/bin/git stash"; gsa = "${pkgs.git}/bin/git stash apply"; gsp = "${pkgs.git}/bin/git stash pop"; gst = "${pkgs.git}/bin/git status"; tigs = "${pkgs.tig}/bin/tig status"; }; }; }