diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/shar/configuration.nix | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/hosts/shar/configuration.nix b/hosts/shar/configuration.nix index 1f78631..c870423 100644 --- a/hosts/shar/configuration.nix +++ b/hosts/shar/configuration.nix @@ -1,7 +1,3 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - { config, pkgs, ... }: { @@ -42,13 +38,13 @@ # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking - networking.networkmanager.enable = false; networking.interfaces.eno1.ipv4.addresses = [{ address = "173.66.162.54"; prefixLength = 28; }]; networking.interfaces.eno1.mtu = 1400; networking.interfaces.eno1.wakeOnLan.enable = true; + networking.useDHCP = false; networking.defaultGateway = { address = "173.66.162.1"; interface = "eno1"; @@ -58,13 +54,6 @@ "9.9.9.9" ]; - hardware.graphics = { - enable = true; - enable32Bit = true; - }; - - services.xserver.enable = true; - # Set your time zone. time.timeZone = "America/New_York"; @@ -132,6 +121,8 @@ openFirewall = true; }; + programs.fish.enable = true; + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; |
