Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

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

flake.nix: format

Format with latest nixfmt.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>

+9 -4
+9 -4
flake.nix
··· 4 4 inputs.organist.url = "github:nickel-lang/organist"; 5 5 6 6 nixConfig = { 7 - extra-substituters = ["https://organist.cachix.org" "https://nix-community.cachix.org"]; 8 - extra-trusted-public-keys = ["organist.cachix.org-1:GB9gOx3rbGl7YEh6DwOscD1+E/Gc5ZCnzqwObNH2Faw=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; 7 + extra-substituters = [ 8 + "https://organist.cachix.org" 9 + "https://nix-community.cachix.org" 10 + ]; 11 + extra-trusted-public-keys = [ 12 + "organist.cachix.org-1:GB9gOx3rbGl7YEh6DwOscD1+E/Gc5ZCnzqwObNH2Faw=" 13 + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 14 + ]; 9 15 }; 10 16 11 - outputs = {organist, ...} @ inputs: 12 - organist.flake.outputsFromNickel .config/. inputs {}; 17 + outputs = { organist, ... }@inputs: organist.flake.outputsFromNickel .config/. inputs { }; 13 18 }