Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clean out overlays

+2 -20
+1 -1
config/nodejs.nix
··· 5 5 6 6 environment.systemPackages = (with pkgs; [ 7 7 pkgs.nodePackages.pnpm 8 - nodejs 8 + pkgs.nodejs-18_x 9 9 yarn 10 10 ]); 11 11
-16
overlays/common.nix
··· 1 - self: super: 2 - 3 - let 4 - inherit (super) callPackage fetchzip fetchFromGitHub openssl python3; 5 - pkgs_x86 = import <nixpkgs> { localSystem = "x86_64-darwin"; overlays = []; }; 6 - in 7 - 8 - rec { 9 - nodejs = self.nodejs-18_x; 10 - v8 = super.v8; 11 - 12 - vimPlugins = super.vimPlugins // (import ./vim-plugins.nix) { 13 - inherit (super) fetchFromGitHub; 14 - inherit (super.vimUtils) buildVimPluginFrom2Nix; 15 - }; 16 - }
+1 -3
overlays/default.nix
··· 1 - [ 2 - (import ./common.nix) 3 - ] 1 + []