summaryrefslogtreecommitdiff
path: root/modules/common/systemd.nix
blob: b393d9f3e6a1659d2dca65e23e84612764b7dcb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ config, pkgs, ... }:
{
  ark = {
    files = [ "/etc/machine-id" ];
    directories = [ "/var/lib/systemd/coredump" ];
  };

  my.extraGroups = [ "systemd-journal" ];

  hm.systemd.user.startServices = "sd-switch";

  boot.initrd.systemd = {
    enable = true;
    network = {
      inherit (config.systemd.network) enable;
      wait-online.enable = false;
    };
  };

  services.journald.extraConfig = ''
    SystemMaxUse=5G
  '';

  systemd =
    let
      extraConfig = ''
        DefaultTimeoutStartSec=30s
        DefaultTimeoutStopSec=15s
      '';
    in
    {
      inherit extraConfig;
      user = {
        inherit extraConfig;
      };
    };

  environment.sessionVariables = {
    SYSTEMD_PAGERSECURE = "1";
    SYSTEMD_PAGER = "${pkgs.less}/bin/less";
    SYSTEMD_LESS = "FRSXMK";
  };
}