blob: 39726705f03ac78fd2a4e657b4d3b5f915e14f95 (
plain) (
blame)
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
|
{
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";
};
}
|