alpha
Login
or
Join now
felixs.dev
/
nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/trueberryless/nix. My nix config
github.com/clemensschlipfinger/general-grievous-nix/
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: tangled auth
author
Felix Schneider
date
2 days ago
(Jul 24, 2026, 8:58 PM +0200)
commit
f24a20d4
f24a20d4635b3b2f9b80d80225d8e05f13446a4c
parent
4b304c74
4b304c74c5447cb1a4ea422bbedd544e58eca919
+7
3 changed files
Expand all
Collapse all
Unified
Split
dotfiles
vcs
gitconfig
gitconfig-tangled
modules
home-manager.nix
+3
dotfiles/vcs/gitconfig
View file
Reviewed
···
21
21
[core]
22
22
excludesFile = ~/.gitignore
23
23
24
24
+
[includeIf "hasconfig:remote.*.url:git@tangled.org:**"]
25
25
+
path = ~/.gitconfig-tangled
26
26
+
24
27
[alias]
25
28
prune-local = "!git fetch -p && git branch -vv | awk '/: gone]/ {print $1}' | grep -v '^\\*' | xargs -r git branch -D"
+3
dotfiles/vcs/gitconfig-tangled
View file
Reviewed
···
1
1
+
[user]
2
2
+
email = "did:plc:pbjvqaziagcyv2vqodldn5op"
3
3
+
signingkey = ~/.ssh/tangled.pub
+1
modules/home-manager.nix
View file
Reviewed
···
12
12
13
13
home.file = {
14
14
".gitconfig".source = ../dotfiles/vcs/gitconfig;
15
15
+
".gitconfig-tangled".source = ../dotfiles/vcs/gitconfig-tangled;
15
16
".gitignore".source = ../dotfiles/vcs/gitignore;
16
17
".config/jj/config.toml".source = ../dotfiles/vcs/jjconfig;
17
18