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.

Merge pull request #34 from khaneliman/nix

flake.nix: minor tweaks

authored by

Miles Wirht and committed by
GitHub
4ddcd9f1 829c79e6

+18 -11
+4 -4
flake.lock
··· 71 71 }, 72 72 "nixpkgs_2": { 73 73 "locked": { 74 - "lastModified": 1758427187, 75 - "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", 74 + "lastModified": 1764474957, 75 + "narHash": "sha256-RCNYRb7zHt+qycQwfTD/Zxnbd4Sxi2fgvkeAljtLEOs=", 76 76 "owner": "nixos", 77 77 "repo": "nixpkgs", 78 - "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", 78 + "rev": "890f57fde071de281cd0e950cd80ea3e1ab55e75", 79 79 "type": "github" 80 80 }, 81 81 "original": { 82 82 "owner": "nixos", 83 - "ref": "nixos-unstable", 83 + "ref": "nixpkgs-unstable", 84 84 "repo": "nixpkgs", 85 85 "type": "github" 86 86 }
+14 -7
flake.nix
··· 1 1 { 2 - inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 3 - inputs.fenix.url = "github:nix-community/fenix"; 4 - inputs.organist.url = "github:nickel-lang/organist"; 2 + inputs = { 3 + nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 4 + fenix.url = "github:nix-community/fenix"; 5 + organist.url = "github:nickel-lang/organist"; 6 + }; 5 7 6 8 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="]; 9 + extra-substituters = [ 10 + "https://organist.cachix.org" 11 + "https://nix-community.cachix.org" 12 + ]; 13 + extra-trusted-public-keys = [ 14 + "organist.cachix.org-1:GB9gOx3rbGl7YEh6DwOscD1+E/Gc5ZCnzqwObNH2Faw=" 15 + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 16 + ]; 9 17 }; 10 18 11 - outputs = {organist, ...} @ inputs: 12 - organist.flake.outputsFromNickel .config/. inputs {}; 19 + outputs = { organist, ... }@inputs: organist.flake.outputsFromNickel .config/. inputs { }; 13 20 }