add pueue as program

This commit is contained in:
Ivan Dimitrov 2024-04-12 20:15:06 +03:00
parent e23053c81d
commit f16008fa3e
4 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ system, pkgs, home-manager, modules, nid, ... }: { system, pkgs, home-manager, modules, nid, ... }:
let let
ivand-programs = with modules.home.programs; [ nvim zsh tmux git chromium firefox kitty lf obs-studio sway swaylock browserpass bottom gpg comma nushell waybar tealdeer ]; ivand-programs = with modules.home.programs; [ nvim zsh tmux git chromium firefox kitty lf obs-studio sway swaylock browserpass bottom gpg comma nushell waybar tealdeer pueue ];
ivand-packages = with modules.home.packages; [ dev essential media ]; ivand-packages = with modules.home.packages; [ dev essential media ];
in in
{ {

View File

@ -3,7 +3,6 @@
goaccess goaccess
ollama ollama
procs procs
pueue
ripgrep ripgrep
scripts scripts
shell_gpt shell_gpt

View File

@ -14,6 +14,7 @@
lf = import ./lf; lf = import ./lf;
nushell = import ./nushell; nushell = import ./nushell;
obs-studio = import ./obs-studio { inherit pkgs; }; obs-studio = import ./obs-studio { inherit pkgs; };
pueue = import ./pueue;
sway = import ./sway { inherit pkgs; }; sway = import ./sway { inherit pkgs; };
swaylock = import ./swaylock; swaylock = import ./swaylock;
tealdeer = import ./tealdeer; tealdeer = import ./tealdeer;

View File

@ -0,0 +1,5 @@
{
services.pueue = {
enable = true;
};
}