My Nix Configuration
2
fork

Configure Feed

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

[overlays] remove shelfmark overlay

dish b089e33f 5aaff1ca

-16
-1
flake.nix
··· 144 144 inherit system; 145 145 overlays = [ 146 146 inputs.self.overlays.openssh-fixperms 147 - inputs.self.overlays.add-shelfmark-full 148 147 inputs.glide.overlays.default 149 148 inputs.golink.overlays.default 150 149 ];
-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 10 9 inputs.glide.overlays.default 11 10 inputs.golink.overlays.default 12 11 ];
-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; 9 - } 10 - ); 11 - }
-3
overlays/default.nix
··· 1 1 { 2 - imports = [ 3 - ./add-shelfmark-full 4 - ]; 5 2 flake.overlays = { 6 3 cinny = import ./cinny; 7 4 openssh-fixperms = import ./openssh-fixperms;