blob: 0b199776da3cba0c64e36c4543b038a1c190c6c9 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
{ config, lib, pkgs, ... }:
rec {
options = {
services.uucp = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
If enabled we set up an account accesible via uucp over ssh
'';
};
sshUser = mkOption {
type = types.unspecified;
default = {
name = "uucp";
isSystemUser = true;
isNormalUser = false;
createHome = true;
home = "/var/spool/uucp";
description = "User for uucp over ssh";
};
description = "The local uucp linux-user";
};
sshConfig = mkOption {
type = types.str;
description = "~uucp/.ssh/config";
};
remoteNodes = mkOption {
types = types.listOf types.str;
default = [];
description = "List of ports to set up. You will probably need to configure these in sshConfig";
};
spoolDir = mkOption {
types = types.path;
default = "/var/spool/uucp";
description = "Spool directory";
};
lockDir = mkOption {
types = types.path;
default = "/var/spool/uucp";
description = "Lock directory";
};
pubDir = mkOption {
types = types.path;
default = "/var/spool/uucppublic";
description = "Public directory";
};
logFile = mkOption {
types = types.path;
default = "/var/log/uucp";
description = "Log file";
};
statFile = mkOption {
types = types.path;
default = "/var/log/uucp.stat";
description = "Statistics file";
};
debugFile = mkOption {
types = types.path;
default = "/var/log/uucp.debug";
description = "Debug file";
};
extraConfig = mkOption {
type = types.string;
default = "";
description = "Extra configuration to append verbatim to `/etc/uucp/config'";
};
};
};
config = {
environment.etc."uucp/config" = {
enable = config.services.uucp.enable;
text = ''
spool ${config.services.uucp.spoolDir}
lockdir ${config.services.uucp.lockDir}
pubdir ${config.services.uucp.pubDir}
logfile ${config.services.uucp.logFile}
statfile ${config.services.uucp.statFile}
debugfile ${config.services.uucp.debugFile}
${config.services.uucp.extraConfig}
'';
};
users.users."uucp" = optional config.services.uucp.enable config.services.uucp.sshUser;
system.activationScripts."uucp-sshconfig" = optional config.services.uucp.enable ''
mkdir -p ${users.users."uucp".home}/.ssh
cp ${builtins.toFile "ssh-config" config.services.uucp.sshConfig} ${users.users."uucp".home}/.ssh/config
'';
};
}
|