📦 package updates

This commit is contained in:
James Walker 2021-06-07 23:01:40 -04:00
parent ad76f2648b
commit 670dd182da
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 8 additions and 1 deletions

View File

@ -29,6 +29,7 @@
"dash"
"discord"
"docker"
"element"
"fantastical"
"figma"
"firefox"
@ -38,6 +39,7 @@
"google-chrome"
"gpg-suite"
"hazel"
"ipfs"
"iterm2"
"keybase"
"logitech-options"

View File

@ -1,5 +1,10 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [ nodejs nodePackages.js-beautify yarn ];
home.packages = with pkgs; [
nodejs
nodePackages.js-beautify
nodePackages.prettier
yarn
];
}