this repo has no description
0
fork

Configure Feed

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

feat(flake): rewrite

+19 -55
+4 -38
flake.lock
··· 1 1 { 2 2 "nodes": { 3 - "flake-utils": { 4 - "inputs": { 5 - "systems": "systems" 6 - }, 7 - "locked": { 8 - "lastModified": 1731533236, 9 - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 10 - "owner": "numtide", 11 - "repo": "flake-utils", 12 - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 13 - "type": "github" 14 - }, 15 - "original": { 16 - "owner": "numtide", 17 - "repo": "flake-utils", 18 - "type": "github" 19 - } 20 - }, 21 3 "nixpkgs": { 22 4 "locked": { 23 - "lastModified": 1771043024, 24 - "narHash": "sha256-O1XDr7EWbRp+kHrNNgLWgIrB0/US5wvw9K6RERWAj6I=", 5 + "lastModified": 1772773019, 6 + "narHash": "sha256-E1bxHxNKfDoQUuvriG71+f+s/NT0qWkImXsYZNFFfCs=", 25 7 "owner": "nixos", 26 8 "repo": "nixpkgs", 27 - "rev": "3aadb7ca9eac2891d52a9dec199d9580a6e2bf44", 9 + "rev": "aca4d95fce4914b3892661bcb80b8087293536c6", 28 10 "type": "github" 29 11 }, 30 12 "original": { 31 13 "owner": "nixos", 32 - "ref": "nixos-25.11", 14 + "ref": "nixos-unstable", 33 15 "repo": "nixpkgs", 34 16 "type": "github" 35 17 } 36 18 }, 37 19 "root": { 38 20 "inputs": { 39 - "flake-utils": "flake-utils", 40 21 "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" 56 22 } 57 23 } 58 24 },
+15 -17
flake.nix
··· 1 1 { 2 - inputs = { 3 - nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; 4 - flake-utils.url = "github:numtide/flake-utils"; 5 - }; 6 - 7 - outputs = { nixpkgs, flake-utils, ... }: 8 - flake-utils.lib.eachDefaultSystem (system: 9 - let 10 - pkgs = import nixpkgs { inherit system; }; 11 - in { 12 - devShells.default = pkgs.mkShell { 13 - packages = with pkgs; [ 14 - nodejs 15 - pnpm 16 - ]; 17 - }; 18 - }); 2 + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 3 + outputs = 4 + { nixpkgs, ... }: 5 + let 6 + system = "x86_64-linux"; 7 + pkgs = import nixpkgs { inherit system; }; 8 + in 9 + { 10 + devShells.${system}.default = pkgs.mkShell { 11 + packages = with pkgs; [ 12 + nodejs 13 + pnpm 14 + ]; 15 + }; 16 + }; 19 17 }