tangled
alpha
login
or
join now
thecoded.prof
/
shells
0
fork
atom
A collection of easily useable/reusable nilla shells
0
fork
atom
overview
issues
pulls
pipelines
feat: add python shell
thecoded.prof
3 weeks ago
d6070e44
cb50e471
verified
This commit was signed with the committer's
known signature
.
thecoded.prof
SSH Key Fingerprint:
SHA256:ePn0u8NlJyz3J4Zl9MHOYW3f4XKoi5K1I4j53bwpG0U=
+16
1 changed file
expand all
collapse all
unified
split
nilla.nix
+16
nilla.nix
reviewed
···
63
63
};
64
64
};
65
65
66
66
+
shells.python = {
67
67
+
systems = [ "x86_64-linux" ];
68
68
+
69
69
+
shell =
70
70
+
{
71
71
+
pkgs,
72
72
+
mkShell,
73
73
+
}:
74
74
+
mkShell {
75
75
+
packages = [
76
76
+
pkgs.python314
77
77
+
pkgs.python314Packages.pip
78
78
+
];
79
79
+
};
80
80
+
};
81
81
+
66
82
shells.typst = {
67
83
systems = [ "x86_64-linux" ];
68
84