tangled
alpha
login
or
join now
crescentro.se
/
dotfiles
0
fork
atom
(mirror) personal dotfiles
github.com/crescentrose/dotfiles
0
fork
atom
overview
issues
pulls
pipelines
feat(apps): add more missing development tools
crescentro.se
2 months ago
c4d0e8e6
29f4d1c0
+9
-2
2 changed files
expand all
collapse all
unified
split
home
_home.nix
shell
default.nix
+7
-2
home/_home.nix
···
1
1
-
{ ragenix, ... }:
1
1
+
{ pkgs, ragenix, ... }:
2
2
{
3
3
imports = [
4
4
ragenix.homeManagerModules.default
···
19
19
programs.discordAccel.enable = true;
20
20
21
21
home = {
22
22
-
packages = [ ragenix.packages."x86_64-linux".default ];
22
22
+
packages = [
23
23
+
ragenix.packages."x86_64-linux".default
24
24
+
# TODO: Extract out
25
25
+
pkgs.kubernetes-helm
26
26
+
pkgs.vault
27
27
+
];
23
28
24
29
username = "ivan";
25
30
homeDirectory = "/home/ivan";
+2
home/shell/default.nix
···
18
18
imagemagick # magic of the image variety
19
19
difftastic # syntax-aware diff
20
20
jujutsu # fine, i will try it...
21
21
+
xh # curl at home
21
22
22
23
# developer tools
23
24
agebox # secret
24
25
age # more secret
25
26
lefthook # git hooks
27
27
+
gnumake # for the heathens
26
28
];
27
29
28
30
xdg.dataFile."scripts".source = ../../scripts;