tangled
alpha
login
or
join now
quasigod.xyz
/
nixconfig
8
fork
atom
My NixOS and Home Manager configurations
8
fork
atom
overview
issues
pulls
pipelines
add back shell alises
quasigod.xyz
5 months ago
f7976910
71272348
verified
This commit was signed with the committer's
known signature
.
quasigod.xyz
SSH Key Fingerprint:
SHA256:IYQIQqk4Il5k+VDa+O4RM4mqCqVtyRilM/eLPbx2jjc=
+8
1 changed file
expand all
collapse all
unified
split
modules
programs
shell.nix
+8
modules/programs/shell.nix
···
2
2
unify.home =
3
3
{ pkgs, config, ... }:
4
4
{
5
5
+
home.shellAliases = {
6
6
+
cd = "z";
7
7
+
lj = "lazyjj";
8
8
+
lg = "lazygit";
9
9
+
o = "xdg-open";
10
10
+
mkdir = "mkdir -p";
11
11
+
tree = "eza -T";
12
12
+
};
5
13
programs = {
6
14
bash = {
7
15
enable = true;