Added NixOS configs

This commit is contained in:
2021-03-31 05:41:15 +05:30
commit 2680d535b5
21 changed files with 1902 additions and 0 deletions

13
networking.nix Normal file
View File

@@ -0,0 +1,13 @@
{lib, config, pkgs, ... }:
{
networking = {
hostName = "nixchod";
wireless.enable = true; # Enables wireless support via wpa_supplicant.
useDHCP = false;
interfaces = {
enp7s0.useDHCP = true;
wlp0s20f3.useDHCP = true;
};
};
}