Add user packages

This commit is contained in:
Riley Apeldoorn 2023-08-29 15:32:56 +02:00
parent 95431378af
commit 2858ec8363
2 changed files with 6 additions and 1 deletions

View file

@ -9,6 +9,7 @@
eva eva
hyperfine hyperfine
du-dust du-dust
pijul
]) ++ (import ../env.nix pkgs); ]) ++ (import ../env.nix pkgs);
# CLI for accessing my passwords # CLI for accessing my passwords

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
custom.gui = { custom.gui = {
@ -9,4 +9,8 @@
}; };
}; };
programs.iamb.enable = true; programs.iamb.enable = true;
home.packages = with pkgs; [
qbittorrent
vlc
];
} }