a dotfile but it's really big
0
fork

Configure Feed

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

work: fix top-level config

+21 -21
+21 -21
modules/tags/work.nix
··· 3 3 config = lib.mkIf config.desktop.enable { 4 4 desktop.yubikey.enable = true; 5 5 programs._1password.enable = true; 6 - }; 7 6 8 - home-manager.users.${config.my.username} = { 9 - xdg.configFile."git/config".text = '' 10 - [includeIf "hasconfig:remote.*.url:git+ssh://git@github.com/upfluence/**"] 11 - path = "~/upf/.gitconfig" 12 - [includeIf "hasconfig:remote.*.url:git@github.com:upfluence/**"] 13 - path = "~/upf/.gitconfig" 14 - ''; 7 + home-manager.users.${config.my.username} = { 8 + xdg.configFile."git/config".text = '' 9 + [includeIf "hasconfig:remote.*.url:git+ssh://git@github.com/upfluence/**"] 10 + path = "~/upf/.gitconfig" 11 + [includeIf "hasconfig:remote.*.url:git@github.com:upfluence/**"] 12 + path = "~/upf/.gitconfig" 13 + ''; 15 14 16 - programs.opencode.settings.mcp = { 17 - linear = { 18 - type = "remote"; 19 - url = "https://mcp.linear.app/mcp"; 20 - enabled = false; # disable by default because it breaks google models 21 - headers = { 22 - Authorization = "Bearer {env:LINEAR_API_KEY}"; 15 + programs.opencode.settings.mcp = { 16 + linear = { 17 + type = "remote"; 18 + url = "https://mcp.linear.app/mcp"; 19 + enabled = false; # disable by default because it breaks google models 20 + headers = { 21 + Authorization = "Bearer {env:LINEAR_API_KEY}"; 22 + }; 23 + }; 24 + sentry = { 25 + type = "remote"; 26 + enabled = false; 27 + url = "{env:SENTRY_MCP_URL}"; 28 + oauth = { }; 23 29 }; 24 - }; 25 - sentry = { 26 - type = "remote"; 27 - enabled = false; 28 - url = "{env:SENTRY_MCP_URL}"; 29 - oauth = { }; 30 30 }; 31 31 }; 32 32 };