diff options
author | Alan Pearce | 2018-04-29 15:00:53 +0200 |
---|---|---|
committer | Alan Pearce | 2018-04-29 15:00:53 +0200 |
commit | 05571aa5ed5eb898be468bff237657914f7e9dcf (patch) | |
tree | b7f271af5d42dce8caec06a66eaafd9e1ef6411d /modules/hardware | |
parent | 68f44953449af2ad3565426e1716757fe7afc04b (diff) | |
download | nixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.tar.lz nixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.tar.zst nixos-configuration-05571aa5ed5eb898be468bff237657914f7e9dcf.zip |
Delay startup of non-essential services
Diffstat (limited to 'modules/hardware')
-rw-r--r-- | modules/hardware/laptop.nix | 13 | ||||
-rw-r--r-- | modules/hardware/nitrokey.nix | 10 | ||||
-rw-r--r-- | modules/hardware/printing.nix | 9 |
3 files changed, 30 insertions, 2 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 |