summaryrefslogtreecommitdiff
path: root/modules/nixfiles/common/systemd.nix
blob: 5c7282dbcd4f28f1486247760738a06a9853268e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{pkgs, ...}: {
  hm.systemd.user.startServices = "sd-switch";

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

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

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