diff --git a/home/default.nix b/home/default.nix index 0443d17..a5e4268 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,6 +1,6 @@ { system, pkgs, home-manager, modules, nid, ... }: 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 ]; in { diff --git a/modules/home/packages/dev/default.nix b/modules/home/packages/dev/default.nix index 3108429..671ad7f 100644 --- a/modules/home/packages/dev/default.nix +++ b/modules/home/packages/dev/default.nix @@ -3,7 +3,6 @@ goaccess ollama procs - pueue ripgrep scripts shell_gpt diff --git a/modules/home/programs/default.nix b/modules/home/programs/default.nix index 9493bbb..6df512e 100644 --- a/modules/home/programs/default.nix +++ b/modules/home/programs/default.nix @@ -14,6 +14,7 @@ lf = import ./lf; nushell = import ./nushell; obs-studio = import ./obs-studio { inherit pkgs; }; + pueue = import ./pueue; sway = import ./sway { inherit pkgs; }; swaylock = import ./swaylock; tealdeer = import ./tealdeer; diff --git a/modules/home/programs/pueue/default.nix b/modules/home/programs/pueue/default.nix new file mode 100644 index 0000000..d0e83ed --- /dev/null +++ b/modules/home/programs/pueue/default.nix @@ -0,0 +1,5 @@ +{ + services.pueue = { + enable = true; + }; +}