My Nix Configuration
2
fork

Configure Feed

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

[flake] add shelfmark-full overlay

dish ec72ba38 be3adb70

+17
+2
flake.nix
··· 21 21 url = "github:hercules-ci/flake-parts"; 22 22 }; 23 23 nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 24 + nixpkgs-shelfmark-full.url = "github:pyrox0/nixpkgs/init/shelfmark-full"; 24 25 # Overrides 25 26 flake-compat.url = "github:edolstra/flake-compat"; 26 27 flake-utils = { ··· 143 144 inherit system; 144 145 overlays = [ 145 146 inputs.self.overlays.openssh-fixperms 147 + inputs.self.overlays.add-shelfmark-full 146 148 inputs.glide.overlays.default 147 149 inputs.golink.overlays.default 148 150 ];
+1
nixosModules/default-config/nixpkgsConfig.nix
··· 6 6 nixpkgs = { 7 7 overlays = [ 8 8 inputs.self.overlays.openssh-fixperms 9 + inputs.self.overlays.add-shelfmark-full 9 10 inputs.glide.overlays.default 10 11 inputs.golink.overlays.default 11 12 ];
+11
overlays/add-shelfmark-full/default.nix
··· 1 + { withSystem, ... }: 2 + { 3 + flake.overlays.add-shelfmark-full = 4 + final: prev: 5 + withSystem prev.stdenv.hostPlatform.system ( 6 + { inputs', ... }: 7 + { 8 + inherit (inputs'.nixpkgs-shelfmark-full.legacyPackages) shelfmark shelfmark-frontend shelfmark-full; 9 + } 10 + ); 11 + }
+3
overlays/default.nix
··· 1 1 { 2 + imports = [ 3 + ./add-shelfmark-full 4 + ]; 2 5 flake.overlays = { 3 6 cinny = import ./cinny; 4 7 openssh-fixperms = import ./openssh-fixperms;