Minor config improvements (hm-pkgs and sourcing)

This commit is contained in:
Tobias Reisinger 2022-12-23 01:12:17 +01:00
parent 14e3fbb489
commit bbf5ffe4dc
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
6 changed files with 9 additions and 20 deletions

View file

@ -50,6 +50,7 @@ alias mv='mv -iv'
alias nixos-rebuild-tinker='sudo nixos-rebuild switch -p tinkering --no-build-nix'
alias pacman-autoremove='sudo pacman -Rns $(pacman -Qtdq)'
alias pacman-autoremove-opts='sudo pacman -Rns $(pacman -Qttdq)'
alias ps-grep='ps aux | grep -v grep | grep'
alias qutebrowser-kiosk='qutebrowser -B $XDG_DATA_HOME/qutebrowser-kiosk -C $XDG_CONFIG_HOME/qutebrowser/config-kiosk.py'

View file

@ -1,6 +1,7 @@
#!/bin/sh
set -a
. "/etc/profile"
. "$HOME/.config/user-dirs.dirs"
. "$XDG_CONFIG_HOME/locale.conf"
set +a

View file

@ -5,6 +5,7 @@
home.packages = with pkgs; [
#alacritty # terminal emulator
bc # calculator (bsp-layout dependency)
bemenu # tool to display menus
bsp-layout # automatic layouts for bpswm
ckb-next # corsair hardware control
conky # shows stuff on the wallpaper
@ -12,26 +13,14 @@
feh # image viewer and wallpaper-tool
flameshot # screenshot tool
helvum # Pipewire GUI
j4-dmenu-desktop # collects .desktop files for a menu
parcellite # clipboard-manager
pavucontrol # Pulseaudio GUI
polybar # desktop bar
solaar # Logitech tool
sxhkd # hotkey daemon
#vagrant # tool for automated virtual machines
#virtualbox # tool for virtual machines
xclip # clipboard CLI for X
];
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "22.11";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
targets.genericLinux.enable = true;
}