because apparently i need a git repo

forgot that direnv was an apt package on the debian

Changed files
+5 -4
users
+5 -4
users/hotsocket.nix
··· 17 17 homeDirectory = lib.mkForce (if (lib.hasInfix "darwin" system) then "/Users/hotsocket" else "/home/hotsocket"); 18 18 packages = (with pkgs; [ # Shared packages. 19 19 git 20 + ]) ++ (with pkgs-unstable; [ # Shared unstable packages. 21 + # in case of multiplayer. that's the entire reason for me having unstable. 22 + luanti-client 23 + direnv 20 24 ]) ++ (lib.optionals (lib.hasInfix "linux" system) (with pkgs; [ # Linux-specific packages. 21 25 jetbrains.idea-community-bin 22 26 brave ··· 26 30 p7zip 27 31 gimp3-with-plugins 28 32 ])) ++ (lib.optionals (lib.hasInfix "darwin" system) (with pkgs; [ # Darwin-specific packages. At some point. 29 - ])) ++ (with pkgs-unstable; [ 30 - # in case of multiplayer. that's the entire reason for me having unstable. 31 - luanti-client 32 - ]); 33 + ])); 33 34 file = { 34 35 ".config/VSCodium/product.json".text = builtins.readFile ../files/product.json; 35 36 };