tangled
alpha
login
or
join now
bwc9876.dev
/
nixos-config
1
fork
atom
Flake for my NixOS devices
1
fork
atom
overview
issues
pulls
pipelines
Fix root not being able to cd
bwc9876.dev
1 year ago
e6dfc0cf
e7d8bf6c
verified
This commit was signed with the committer's
known signature
.
bwc9876.dev
SSH Key Fingerprint:
SHA256:DanMEP/RNlSC7pAVbnXO6wzQV00rqyKj053tz4uH5gQ=
+8
1 changed file
expand all
collapse all
unified
split
base
shell.nix
+8
base/shell.nix
···
46
46
# extraPackages = with pkgs.bat-extras; [batman batgrep batwatch];
47
47
};
48
48
};
49
49
+
50
50
+
home-manager.users.root.programs = {
51
51
+
zoxide.enable = true;
52
52
+
ripgrep.enable = true;
53
53
+
command-not-found.enable = false;
54
54
+
bat.enable = true;
55
55
+
nix-index.enable = true;
56
56
+
};
49
57
}