diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-10-08 01:04:01 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-10-08 01:04:01 +0300 |
commit | a0a3dcde99c4a8aa19b23ead79c08eedca30d002 (patch) | |
tree | 06387d2676fa1656df7db976f3601d00b08bd1a8 /configurations/yavanna/default.nix | |
parent | 2022-09-22 (diff) |
2022-10-08
Diffstat (limited to '')
-rw-r--r-- | configurations/yavanna/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/configurations/yavanna/default.nix b/configurations/yavanna/default.nix index aa3118e..e3172a6 100644 --- a/configurations/yavanna/default.nix +++ b/configurations/yavanna/default.nix @@ -14,36 +14,6 @@ with lib; { rtorrent.enable = true; }; - networking = let - interface = "eth0"; - in { - interfaces.${interface} = { - ipv4.addresses = [ - { - inherit (this.ipv4) address; - prefixLength = 24; - } - ]; - - ipv6.addresses = [ - { - inherit (this.ipv6) address; - prefixLength = 128; - } - ]; - }; - - defaultGateway = { - inherit interface; - address = this.ipv4.gateway; - }; - - defaultGateway6 = { - inherit interface; - address = this.ipv6.gateway; - }; - }; - boot = { loader.grub = { enable = true; |