From 6f2a45fe58e966c50ce472580d0cfaa2ba145ea0 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 28 Apr 2018 17:53:32 +0200 Subject: style(config): Minor style fix --- configuration.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index 76466c7e39f5..27c55b47a011 100644 --- a/configuration.nix +++ b/configuration.nix @@ -24,14 +24,16 @@ boot.kernelModules = [ "snd-seq" "snd-rawmidi" ]; hardware.pulseaudio.package = pkgs.pulseaudioFull; - # Don't use ISP's DNS servers: - networking.nameservers = [ - "1.1.1.1" - "1.0.0.1" - ]; + networking = { + # Don't use ISP's DNS servers: + nameservers = [ + "1.1.1.1" + "1.0.0.1" + ]; - # Open Chromecast-related ports - firewall.allowedTCPPorts = [ 5556 5558 ]; + # Open Chromecast-related ports + firewall.allowedTCPPorts = [ 5556 5558 ]; + }; # Configure emacs: # (actually, that's a lie, this only installs emacs!) -- cgit 1.4.1