Add nix home-manager

This commit is contained in:
Tobias Reisinger 2022-12-22 15:05:43 +01:00
parent 2353b4cfac
commit 14e3fbb489
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
9 changed files with 100 additions and 14 deletions

View file

@ -0,0 +1,37 @@
{ 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;
}