tangled
alpha
login
or
join now
anirudh.fi
/
dotfiles
5
fork
atom
my nix dotfiles
5
fork
atom
overview
issues
pulls
pipelines
nix: programs/jujutsu: setup jj
anirudh.fi
11 months ago
0817dcd6
7c7168e3
verified
This commit was signed with the committer's
known signature
.
anirudh.fi
SSH Key Fingerprint:
SHA256:cz35vdbiWEzCNEfuL9fMC2JVIhtXavXBHrRjv8gxpAk=
+17
-1
3 changed files
expand all
collapse all
unified
split
darwin
home.nix
programs
common.nix
jujutsu.nix
-1
darwin/home.nix
···
36
36
docker-buildx
37
37
pinentry_mac
38
38
kubectl
39
39
-
jujutsu
40
39
41
40
signal-desktop
42
41
raycast
+1
programs/common.nix
···
16
16
./alacritty.nix
17
17
./fish.nix
18
18
./zed/default.nix
19
19
+
./jujutsu.nix
19
20
];
20
21
21
22
programs = {
+16
programs/jujutsu.nix
···
1
1
+
{ config
2
2
+
, pkgs
3
3
+
, ...
4
4
+
}:
5
5
+
{
6
6
+
programs.jujutsu = {
7
7
+
enable = true;
8
8
+
settings = {
9
9
+
user = {
10
10
+
name = "Anirudh Oppiliappan";
11
11
+
email = "x@icyphox.sh";
12
12
+
};
13
13
+
ui.paginate = "never";
14
14
+
};
15
15
+
};
16
16
+
}