nix/common/home-manager/home.nix

95 lines
1.6 KiB
Nix
Raw Normal View History

2022-08-08 12:43:21 +00:00
{ config, pkgs, ... }:
{
home = {
packages = with pkgs; [
# Office
aerc
libreoffice-fresh
# Programming
bacon
drone-cli
sublime-merge
tig
vscode-fhs
# Graphics
gimp
inkscape
# Internet
discord
httpie
tdesktop
transmission-gtk
w3m
wget
# Sound & Video
mpv
spotify
# System Tools
borgbackup
fd
gnome.gnome-tweaks
gnomeExtensions.openweather
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
p7zip
2022-08-08 12:43:21 +00:00
pika-backup
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
tmux
tree
2022-08-08 12:43:21 +00:00
unrar
2022-08-10 07:41:44 +00:00
unzip
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-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 ../..";
config = "vim /etc/nixos/configuration.nix";
hmconf = "vim /etc/nixos/common/home-manager.nix";
switch = "sudo nixos-rebuild switch";
nr = "nix run --impure";
ns = "nix-shell";
nsp = "nix-shell -p";
cdnix = "cd /etc/nixos";
ga = "git add";
gc = "git commit";
2022-08-10 11:25:15 +00:00
gcl = "git clone";
2022-08-08 12:43:21 +00:00
gcm = "git commit -m";
gl = "git pull";
gla = "git pull --autostash";
gp = "git push";
gpf = "git push --force-with-lease";
gr = "git reset";
grs = "git reset --soft";
tigs = "tig status";
};
};
}