tangled
alpha
login
or
join now
42willow.github.io
/
flake
my system configurations ^-^
0
fork
atom
overview
issues
pulls
pipelines
refactor(hm): move git to shared
42willow.github.io
5 months ago
b25fa637
0eca55b4
verified
This commit was signed with the committer's
known signature
.
42willow.github.io
SSH Key Fingerprint:
SHA256:lfRlnIl652lP4GCu9bIbJoxV4oTEd2BdY9b32IG4G4o=
+14
-9
5 changed files
expand all
collapse all
unified
split
modules
nixos
home
programs
cli
default.nix
shared
home
home.nix
programs
cli
default.nix
git.nix
default.nix
-1
modules/nixos/home/programs/cli/default.nix
···
14
14
./direnv.nix # dev
15
15
./eza.nix # core
16
16
./fzf.nix # tools
17
17
-
./git.nix # core
18
17
./hyfetch.nix # tools
19
18
./nushell.nix # core
20
19
./ripgrep.nix # tools
modules/nixos/home/programs/cli/git.nix
modules/shared/home/programs/cli/git.nix
+4
-8
modules/shared/home/home.nix
···
1
1
{osConfig, ...}: let
2
2
inherit (osConfig.settings.system) user;
3
3
in {
4
4
-
# imports = [
5
5
-
# ./desktop
6
6
-
# ./programs
7
7
-
# ./scripts
8
8
-
# ./services
9
9
-
# ./system
10
10
-
# ./themes
11
11
-
# ];
4
4
+
imports = [
5
5
+
./programs
6
6
+
];
7
7
+
12
8
programs.home-manager.enable = true;
13
9
14
10
home = {
+5
modules/shared/home/programs/cli/default.nix
···
1
1
+
{
2
2
+
imports = [
3
3
+
./git.nix
4
4
+
];
5
5
+
}
+5
modules/shared/home/programs/default.nix
···
1
1
+
{
2
2
+
imports = [
3
3
+
./cli
4
4
+
];
5
5
+
}