This repository was archived by the owner on Apr 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstruct.txt
More file actions
86 lines (85 loc) · 3.39 KB
/
struct.txt
File metadata and controls
86 lines (85 loc) · 3.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.
├── flake.lock
├── flake.nix
├── home # home modules dir
│ ├── common # common modules for all system all arch
│ │ └── modules
│ ├── darwin
│ │ ├── aarch64
│ │ │ └── common # common modules for darwin aarch64
│ │ │ └── modules
│ │ ├── common # common modules for darwin all arch
│ │ │ └── modules
│ │ └── x86
│ │ └── common # common modules for darwin x86
│ │ └── modules
│ ├── nix-on-droid
│ │ ├── aarch64
│ │ │ ├── common
│ │ │ │ └── modules
│ │ │ └── mondrian_1
│ │ │ ├── home.nix
│ │ │ └── modules
│ │ │ ├── creative.nix
│ │ │ ├── default.nix
│ │ │ ├── development.nix
│ │ │ └── font.nix
│ │ ├── common
│ │ │ └── modules
│ │ └── x86
│ │ └── common
│ │ └── modules
│ └── nixos
│ ├── aarch64
│ │ └── common
│ │ └── modules
│ ├── common
│ │ └── modules
│ └── x86
│ └── common
│ └── modules
├── hosts # nixos/nix modules dir
│ ├── common
│ │ └── modules
│ ├── darwin
│ │ ├── aarch64
│ │ │ └── common
│ │ │ └── modules
│ │ ├── common
│ │ │ └── modules
│ │ └── x86
│ │ └── common
│ │ └── modules
│ ├── nix-on-droid
│ │ ├── aarch64
│ │ │ ├── common
│ │ │ │ └── modules
│ │ │ └── mondrian_1
│ │ │ ├── modules
│ │ │ │ └── default.nix
│ │ │ └── nix-on-droid.nix
│ │ ├── common
│ │ │ └── modules
│ │ │ ├── authorized_keys
│ │ │ ├── extra_keys.nix
│ │ │ ├── proxychains.nix
│ │ │ ├── sshd.nix
│ │ │ └── termux.properties
│ │ └── x86
│ │ └── common
│ │ └── modules
│ └── nixos
│ ├── aarch64
│ │ └── common
│ │ └── modules
│ ├── common
│ │ └── modules
│ └── x86
│ └── common
│ └── modules
├── lib # I use this to simplify the way to make system/environment
│ └── nix-on-droid.nix
├── Makefile # I use this to simplify my command
├── README.md
├── Reference.md
└── struct.md # the structure