From 4322929fa3d3681f7cf84f2e8dae78bf5f5db932 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Sun, 3 Jan 2021 16:43:55 +0100 Subject: [PATCH] redeploy jarvis --- modules/tor-hidden-service.nix | 2 +- physical/xps9360-hardware-config.nix | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/tor-hidden-service.nix b/modules/tor-hidden-service.nix index 7a20fa9..dbe6211 100644 --- a/modules/tor-hidden-service.nix +++ b/modules/tor-hidden-service.nix @@ -8,7 +8,7 @@ let in { options.services.tor.service-keys = mkOption { default = {}; - type = with types; loaOf str; + type = with types; attrsOf str; }; config = mkIf (service-keys != {}) { diff --git a/physical/xps9360-hardware-config.nix b/physical/xps9360-hardware-config.nix index 185f0db..e201e76 100644 --- a/physical/xps9360-hardware-config.nix +++ b/physical/xps9360-hardware-config.nix @@ -27,4 +27,6 @@ nix.maxJobs = lib.mkDefault 4; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; + # high-resolution display + hardware.video.hidpi.enable = lib.mkDefault true; }