Set up some packages

This commit is contained in:
outfoxxed 2023-06-20 23:47:58 -07:00
parent d6495fe305
commit 741eb1d5ce
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
6 changed files with 58 additions and 3 deletions

27
modules/user/general.nix Normal file
View file

@ -0,0 +1,27 @@
{ pkgs, homeConfig, ... }: {
user = {
home.packages = with pkgs; [
ark
kwrite
krita
gimp
vlc
mpv
gpicview
filelight
cantata
logseq
unrar # used by ark
xdg-utils
];
programs = {
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
};
}