summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorAlan Pearce2018-04-29 15:00:53 +0200
committerAlan Pearce2018-04-29 15:00:53 +0200
commit05571aa5ed5eb898be468bff237657914f7e9dcf (patch)
treeb7f271af5d42dce8caec06a66eaafd9e1ef6411d /modules
parent68f44953449af2ad3565426e1716757fe7afc04b (diff)
downloadnixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.tar.lz
nixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.tar.zst
nixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.zip
Delay startup of non-essential services
Diffstat (limited to 'modules')
-rw-r--r--modules/hardware/laptop.nix13
-rw-r--r--modules/hardware/nitrokey.nix10
-rw-r--r--modules/hardware/printing.nix9
-rw-r--r--modules/services/zeroconf.nix11
4 files changed, 40 insertions, 3 deletions
diff --git a/modules/hardware/laptop.nix b/modules/hardware/laptop.nix
index bd08308..c662885 100644
--- a/modules/hardware/laptop.nix
+++ b/modules/hardware/laptop.nix
@@ -6,7 +6,18 @@
   ];
 
   hardware = {
-    bluetooth.enable = true;
+    bluetooth = {
+      enable = true;
+      powerOnBoot = false;
+    };
+  };
+  systemd.services.bluetooth.wantedBy = lib.mkForce [];
+  systemd.timers.bluetooth = {
+    description = "Delayed startup of Bluetooth";
+    wantedBy = [ "timers.target" ];
+    timerConfig = {
+      OnActiveSec = "1 min";
+    };
   };
 
   environment.systemPackages = with pkgs; [
diff --git a/modules/hardware/nitrokey.nix b/modules/hardware/nitrokey.nix
index ec25d8e..22e9d76 100644
--- a/modules/hardware/nitrokey.nix
+++ b/modules/hardware/nitrokey.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }:
+{ config, pkgs, lib, ... }:
 
 { programs.ssh.startAgent = false;
 
@@ -26,6 +26,14 @@
       enable = true;
     };
   };
+  systemd.services.tor.wantedBy = lib.mkForce [];
+  systemd.timers.tor = {
+    description = "Delayed startup of Tor";
+    wantedBy = [ "timers.target" ];
+    timerConfig = {
+      OnActiveSec = "1 min";
+    };
+  };
 
   environment.systemPackages = with pkgs; [
     gnupg
diff --git a/modules/hardware/printing.nix b/modules/hardware/printing.nix
index 32aa403..96d3a95 100644
--- a/modules/hardware/printing.nix
+++ b/modules/hardware/printing.nix
@@ -3,6 +3,15 @@
 { services.printing.enable = true;
   systemd.services.cups.wantedBy = lib.mkForce [];
   systemd.sockets.cups.wantedBy = [ "sockets.target" ];
+  systemd.services.cups-browsed.wantedBy = lib.mkForce [];
+
+  systemd.timers.cups-browsed = {
+    description = "Delayed startup of CUPS Remote Printer Discovery";
+    wantedBy = [ "timers.target" ];
+    timerConfig = {
+      OnActiveSec = "2 min";
+    };
+  };
 
   imports = [
     ../services/zeroconf.nix
diff --git a/modules/services/zeroconf.nix b/modules/services/zeroconf.nix
index aa4b47e..0b428c5 100644
--- a/modules/services/zeroconf.nix
+++ b/modules/services/zeroconf.nix
@@ -1,7 +1,16 @@
-{ config, pkgs, ... }:
+{ config, pkgs, lib, ... }:
 
 { services.avahi = {
     enable = true;
     nssmdns = true;
+    ipv6 = true;
+  };
+  systemd.services.avahi-daemon.wantedBy = lib.mkForce [];
+  systemd.timers.avahi-daemon = {
+    description = "Delayed startup of Avahi";
+    wantedBy = [ "timers.target" ];
+    timerConfig = {
+      OnActiveSec = "1 min";
+    };
   };
 }