this repo has no description
0
fork

Configure Feed

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

feat(flake): init

+49
+2
.gitignore
··· 23 23 # misc 24 24 .DS_Store 25 25 *.pem 26 + /.direnv 27 + .envrc 26 28 27 29 # debug 28 30 npm-debug.log*
+27
flake.lock
··· 1 + { 2 + "nodes": { 3 + "nixpkgs": { 4 + "locked": { 5 + "lastModified": 1774709303, 6 + "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", 7 + "owner": "nixos", 8 + "repo": "nixpkgs", 9 + "rev": "8110df5ad7abf5d4c0f6fb0f8f978390e77f9685", 10 + "type": "github" 11 + }, 12 + "original": { 13 + "owner": "nixos", 14 + "ref": "nixos-unstable", 15 + "repo": "nixpkgs", 16 + "type": "github" 17 + } 18 + }, 19 + "root": { 20 + "inputs": { 21 + "nixpkgs": "nixpkgs" 22 + } 23 + } 24 + }, 25 + "root": "root", 26 + "version": 7 27 + }
+20
flake.nix
··· 1 + { 2 + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 3 + 4 + outputs = 5 + { nixpkgs, ... }: 6 + let 7 + system = "x86_64-linux"; 8 + pkgs = import nixpkgs { inherit system; }; 9 + in 10 + { 11 + devShells.${system}.default = pkgs.mkShell { 12 + packages = with pkgs; [ 13 + nodejs 14 + pnpm 15 + typescript 16 + typescript-language-server 17 + ]; 18 + }; 19 + }; 20 + }