change from mono-home-manager to full flake multi-system configuration
This commit is contained in:
42
home/programs.nix
Normal file
42
home/programs.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
|
||||
# The home.packages option allows you to install
|
||||
# Nix packages into your environment.
|
||||
home.packages = with pkgs; [
|
||||
thunderbird
|
||||
vimiv-qt
|
||||
zip
|
||||
unzip
|
||||
|
||||
signal-desktop
|
||||
vlc
|
||||
keepassxc
|
||||
logseq
|
||||
okular
|
||||
borgbackup
|
||||
discord
|
||||
|
||||
pulsemixer
|
||||
brightnessctl
|
||||
gammastep # color temperature
|
||||
swaybg
|
||||
xwayland
|
||||
grim # screenshot functionality
|
||||
slurp # screenshot functionality
|
||||
wl-clipboard # copy/paste from stdin / stdout
|
||||
mako # notification system developed by swaywm maintainer
|
||||
|
||||
# secret management
|
||||
age
|
||||
sops
|
||||
|
||||
];
|
||||
|
||||
programs.nvm = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.direnv.enable = true;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user