My Nix Configuration
2
fork

Configure Feed

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

[flake] format

dish 4c3d9013 80ccb7ae

+11 -19
+1 -3
data/oidc.nix
··· 4 4 ... 5 5 }: 6 6 let 7 - clientList = lib.concatLists ( 8 - lib.mapAttrsToList (c: _: (c.config.dish.oidcClients or [ ])) self.nixosConfigurations 9 - ); 7 + clientList = lib.concatLists (lib.mapAttrsToList (c: _: (c.config.dish.oidcClients or [ ])) self.nixosConfigurations); 10 8 in 11 9 { 12 10 flake.data.oidcClients = clientList;
+3 -3
devShells/default/default.nix
··· 5 5 }: 6 6 pkgs.mkShellNoCC { 7 7 packages = [ 8 + (pkgs.writeShellScriptBin "an" '' 9 + ${lib.getExe' pkgs.agenix "agenix"} -i ~/.age/age-new $@ 10 + '') 8 11 # keep-sorted start 9 12 pkgs.age 10 13 pkgs.deadnix ··· 19 22 pkgs.nvd 20 23 pkgs.statix 21 24 pkgs.tokei 22 - (pkgs.writeShellScriptBin "an" '' 23 - ${lib.getExe' pkgs.agenix "agenix"} -i ~/.age/age-new $@ 24 - '') 25 25 # keep-sorted end 26 26 ]; 27 27 }
+4 -1
flake.nix
··· 160 160 no-underscore = true; 161 161 }; 162 162 jsonfmt.enable = true; 163 - jsonfmt.excludes = [ ".zed/settings.json" ]; 163 + jsonfmt.excludes = [ 164 + ".zed/settings.json" 165 + "packages/grimmory/*.json" 166 + ]; 164 167 just.enable = true; 165 168 keep-sorted.enable = true; 166 169 mdformat.enable = true;
+1 -1
hosts/marvin/default.nix
··· 1 - { config, ... }: 1 + { ... }: 2 2 { 3 3 imports = [ 4 4 # Machine-specific configurations.
+1 -1
lib/misc.nix
··· 1 1 { self, pkgs, ... }: 2 2 let 3 - system = pkgs.stdenv.hostPlatform.system; 3 + inherit (pkgs.stdenv.hostPlatform) system; 4 4 in 5 5 { 6 6 /**
+1 -2
neovim/languages/python.nix
··· 1 - { lib, pkgs, ... }: 2 - { 1 + _: { 3 2 config.vim = { 4 3 languages = { 5 4 python = {
-2
packages/anubis-files/src/policies/meta/base.yaml
··· 45 45 action: WEIGH 46 46 weight: 47 47 adjust: 5 48 - 49 48 # https://developers.cloudflare.com/browser-rendering/reference/automatic-request-headers/ 50 49 # Block all of this 51 50 - name: block-cf-browser-rendering-api ··· 54 53 - name: block-cf-browser-rendering-bindings 55 54 expression: '"cf-brapi-devtools" in headers' 56 55 action: DENY 57 - 58 56 # Generic catchall rule 59 57 - name: generic-browser 60 58 user_agent_regex: >-
-6
packages/grimmory/package.nix
··· 11 11 pkg-config, 12 12 gradle_9, 13 13 jna, 14 - _experimental-update-script-combinators, 15 14 nix-update-script, 16 15 }: 17 16 let ··· 125 124 ''; 126 125 127 126 passthru = { 128 - # updateScript = _experimental-update-script-combinators.sequence [ 129 - # (nix-update-script { }) 130 - # frontend.updateScript 131 - # finalAttrs.mitmCache.updateScript 132 - # ]; 133 127 inherit frontend; 134 128 }; 135 129