diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-03-18 11:58:35 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-04-03 17:53:02 -0700 |
| commit | c5a78751f96587bf4a3704143ac81598ee6c3e5b (patch) | |
| tree | daf41e9b05ade02118eaa08aabf9bac771e12c71 /hosts/carmel/default.nix | |
| parent | flake: fix URL for sendsms (diff) | |
| download | infra-c5a78751f96587bf4a3704143ac81598ee6c3e5b.tar.gz | |
hosts/carmel: reconfigure the host as a router
I'm not using it as a desktop, and the current router is getting old and
will likely fail in the near future. It's also a debian machine
configured manually, so let's reconfigure carmel as our new router.
There are three NICs in the host: 2 are 10Gb and one is 1Gb. The 1Gb
will be used as the upstream interface, and one of the 10Gb will be for
the LAN.
There are 2 VLANs to configure: one for IoT devices and one for guest.
Diffstat (limited to '')
| -rw-r--r-- | hosts/carmel/default.nix | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index e9f0d64..83d6317 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -2,18 +2,7 @@ { imports = - [ ./hardware.nix ./boot.nix ./sound.nix ./networking.nix ./services.nix ]; - - # Allow setting GTK configuration using home-manager - programs.dconf.enable = true; - - # install and configure the fonts - my.systems.fonts.enable = true; - - # install and configure sway - my.programs.sway.enable = true; - - hardware.opengl.driSupport = true; + [ ./hardware.nix ./boot.nix ./networking.nix ./services.nix ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions |
