this repo has no description
2
fork

Configure Feed

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

darwin shell

+58 -7
+34
flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "flake-utils": { 4 + "inputs": { 5 + "systems": "systems" 6 + }, 7 + "locked": { 8 + "lastModified": 1726560853, 9 + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", 10 + "owner": "numtide", 11 + "repo": "flake-utils", 12 + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", 13 + "type": "github" 14 + }, 15 + "original": { 16 + "owner": "numtide", 17 + "repo": "flake-utils", 18 + "type": "github" 19 + } 20 + }, 3 21 "nixpkgs": { 4 22 "locked": { 5 23 "lastModified": 1708407374, ··· 18 36 }, 19 37 "root": { 20 38 "inputs": { 39 + "flake-utils": "flake-utils", 21 40 "nixpkgs": "nixpkgs" 41 + } 42 + }, 43 + "systems": { 44 + "locked": { 45 + "lastModified": 1681028828, 46 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 47 + "owner": "nix-systems", 48 + "repo": "default", 49 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 50 + "type": "github" 51 + }, 52 + "original": { 53 + "owner": "nix-systems", 54 + "repo": "default", 55 + "type": "github" 22 56 } 23 57 } 24 58 },
+24 -7
flake.nix
··· 1 1 { 2 2 description = "A basic flake with a shell"; 3 - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 3 + inputs = { 4 + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 5 + flake-utils.url = "github:numtide/flake-utils"; 6 + }; 7 + 8 + outputs = { nixpkgs, flake-utils, ... }: 9 + flake-utils.lib.eachDefaultSystem (system: 10 + let 11 + pkgs = import nixpkgs { inherit system; }; 12 + in 13 + { 14 + devShells.default = pkgs.mkShell { 15 + buildInputs = with pkgs; [ 16 + go 17 + pigeon 18 + nodejs 19 + sqlite 20 + ]; 4 21 5 - outputs = { nixpkgs, ... }: 6 - let pkgs = nixpkgs.legacyPackages."x86_64-linux"; 7 - in { 8 - devShells."x86_64-linux".default = 9 - pkgs.mkShell { packages = with pkgs; [ go sqlite nodejs pigeon ]; }; 10 - }; 22 + shellHook = '' 23 + echo "System: ${system}" 24 + ''; 25 + }; 26 + } 27 + ); 11 28 }