nix/common/home-manager/home.nix

123 lines
2.1 KiB
Nix
Raw Normal View History

2022-08-08 12:43:21 +00:00
{ config, pkgs, ... }:
{
home = {
packages = with pkgs; [
# Office
aerc
libreoffice-fresh
2022-08-20 13:34:46 +00:00
obsidian
2022-09-19 21:25:47 +00:00
thunderbird
2022-08-08 12:43:21 +00:00
# Programming
bacon
2022-08-20 13:34:46 +00:00
colordiff
2022-08-08 12:43:21 +00:00
drone-cli
2022-08-12 00:14:03 +00:00
ghidra
2022-08-08 12:43:21 +00:00
sublime-merge
tig
vscode-fhs
# Graphics
gimp
2022-10-04 14:53:46 +00:00
graphicsmagick
2022-08-08 12:43:21 +00:00
inkscape
# Internet
discord
httpie
tdesktop
w3m
wget
# Sound & Video
2022-08-12 11:12:36 +00:00
easyeffects
2022-08-08 12:43:21 +00:00
spotify
2022-08-12 00:14:03 +00:00
# Gaming
pcsxr
mednafen
mednaffe
2022-10-25 13:50:29 +00:00
prismlauncher
2022-08-12 00:14:03 +00:00
2022-08-08 12:43:21 +00:00
# System Tools
borgbackup
fd
2022-10-04 14:53:46 +00:00
file
2022-08-08 12:43:21 +00:00
htop
2022-08-10 07:41:44 +00:00
iotop
2022-08-08 12:43:21 +00:00
killall
2022-08-10 07:41:44 +00:00
lsof
2022-08-20 13:34:46 +00:00
ncdu
2022-08-08 12:43:21 +00:00
pika-backup
2022-10-31 01:49:37 +00:00
pinentry-qt
2022-08-12 00:14:03 +00:00
powertop
2022-08-10 07:41:44 +00:00
s-tui
screen
2022-08-08 12:43:21 +00:00
silver-searcher
2022-08-10 07:41:44 +00:00
smartmontools
sysstat
tree
2022-08-12 00:14:03 +00:00
usbutils
2022-08-08 12:43:21 +00:00
virt-manager
2022-08-10 07:41:44 +00:00
vulkan-tools
2022-08-08 12:43:21 +00:00
wl-clipboard
2022-08-12 00:14:03 +00:00
gnome.gnome-tweaks
gnome.gnome-terminal
2022-08-12 00:14:03 +00:00
gnomeExtensions.openweather
libarchive
p7zip
unrar
unzip
2022-08-10 07:41:44 +00:00
zip
2022-08-08 12:43:21 +00:00
];
sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
NIXOS_OZONE_WL = 1;
QT_QPA_PLATFORM = "wayland";
SDL_VIDEODRIVER = "wayland";
EDITOR = "nvim";
};
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
2022-10-25 13:51:15 +00:00
o = "xdg-open";
2022-08-08 12:43:21 +00:00
2022-08-20 13:34:46 +00:00
ncdu = "ncdu --color dark";
2022-08-08 12:43:21 +00:00
config = "vim /etc/nixos/configuration.nix";
hmconf = "vim /etc/nixos/common/home-manager.nix";
2022-11-01 00:32:54 +00:00
hmhconf = "vim /etc/nixos/common/home-manager/home.nix";
2022-08-08 12:43:21 +00:00
switch = "sudo nixos-rebuild switch";
nr = "nix run --impure";
ns = "nix-shell";
nsp = "nix-shell -p";
cdnix = "cd /etc/nixos";
ga = "git add";
2022-10-04 14:57:34 +00:00
gb = "git branch";
2022-11-01 00:32:54 +00:00
gbd = "git branch -d";
2022-08-08 12:43:21 +00:00
gc = "git commit";
gcm = "git commit -m";
2022-08-12 00:14:03 +00:00
gcan = "git commit --amend --no-edit";
gcl = "git clone";
gco = "git checkout";
2022-10-04 14:57:34 +00:00
gcb = "git checkout -b";
2022-08-08 12:43:21 +00:00
gl = "git pull";
gla = "git pull --autostash";
gp = "git push";
gpf = "git push --force-with-lease";
gr = "git reset";
grs = "git reset --soft";
2022-10-04 14:57:34 +00:00
gs = "git switch";
2022-08-08 12:43:21 +00:00
tigs = "tig status";
};
};
}