tangled
alpha
login
or
join now
kxt.pet
/
nixconf
Nix configuration for various systems
0
fork
atom
overview
issues
pulls
pipelines
networking: init
kxt.pet
3 weeks ago
07cc8bb5
f05f55d5
verified
This commit was signed with the committer's
known signature
.
kxt.pet
SSH Key Fingerprint:
SHA256:oYqtmRCZ3+nUGejqs8kfU83PNTtRgs6z0MlcQlyMft0=
options
unified
split
Changed files
+14
modules
nixos
default.nix
networking
default.nix
+1
modules/nixos/default.nix
···
1
1
{
2
2
imports = [
3
3
./hardware
4
4
+
./networking
4
5
];
5
6
}
+13
modules/nixos/networking/default.nix
···
1
1
+
{ ... }:
2
2
+
{
3
3
+
networking = {
4
4
+
# i think this is bad actually
5
5
+
# TODO: ill look into it later
6
6
+
useDHCP = true;
7
7
+
8
8
+
nameservers = [
9
9
+
"8.8.8.8"
10
10
+
"8.8.4.4"
11
11
+
];
12
12
+
};
13
13
+
}