Mirror of @tangled.org/core. Running on a Raspberry Pi Zero 2 (Please be gentle).
0
fork

Configure Feed

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

nix: add flake-compat

Signed-off-by: Ruby Iris Juric <ruby@srxl.me>

authored by

Ruby Iris Juric and committed by
Tangled
a2789275 422dd272

+22
+17
default.nix
··· 1 + # Default setup from https://git.lix.systems/lix-project/flake-compat 2 + 3 + let 4 + lockFile = builtins.fromJSON (builtins.readFile ./flake.lock); 5 + flake-compat-node = lockFile.nodes.${lockFile.nodes.root.inputs.flake-compat}; 6 + flake-compat = builtins.fetchTarball { 7 + inherit (flake-compat-node.locked) url; 8 + sha256 = flake-compat-node.locked.narHash; 9 + }; 10 + 11 + flake = ( 12 + import flake-compat { 13 + src = ./.; 14 + } 15 + ); 16 + in 17 + flake.defaultNix
flake.lock

This is a binary file and will not be displayed.

+5
flake.nix
··· 7 7 url = "github:nix-community/gomod2nix"; 8 8 inputs.nixpkgs.follows = "nixpkgs"; 9 9 }; 10 + flake-compat = { 11 + url = "https://git.lix.systems/lix-project/flake-compat/archive/main.tar.gz"; 12 + flake = false; 13 + }; 10 14 indigo = { 11 15 url = "github:oppiliappan/indigo"; 12 16 flake = false; ··· 54 50 inter-fonts-src, 55 51 sqlite-lib-src, 56 52 ibm-plex-mono-src, 53 + ... 57 54 }: let 58 55 supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; 59 56 forAllSystems = nixpkgs.lib.genAttrs supportedSystems;