38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Packages that should be installed to the user profile.
|
||
|
home.packages = with pkgs; [
|
||
|
#alacritty # terminal emulator
|
||
|
bc # calculator (bsp-layout dependency)
|
||
|
bsp-layout # automatic layouts for bpswm
|
||
|
ckb-next # corsair hardware control
|
||
|
conky # shows stuff on the wallpaper
|
||
|
dunst # notification-daemon
|
||
|
feh # image viewer and wallpaper-tool
|
||
|
flameshot # screenshot tool
|
||
|
helvum # Pipewire GUI
|
||
|
parcellite # clipboard-manager
|
||
|
pavucontrol # Pulseaudio GUI
|
||
|
solaar # Logitech tool
|
||
|
#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;
|
||
|
}
|