-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathkscreenlocker.nix
266 lines (250 loc) · 8.16 KB
/
kscreenlocker.nix
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
{ config, lib, ... }:
let
cfg = config.programs.plasma;
inherit (import ../lib/wallpapers.nix { inherit lib; })
wallpaperPictureOfTheDayType
wallpaperSlideShowType
;
in
{
options.programs.plasma.kscreenlocker = {
autoLock = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = true;
description = ''
Whether the screen will be locked after the specified time.
'';
};
lockOnResume = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = false;
description = ''
Whether to lock the screen when the system resumes from sleep.
'';
};
timeout = lib.mkOption {
type = with lib.types; nullOr ints.unsigned;
default = null;
example = 5;
description = ''
Sets the timeout in minutes after which the screen will be locked.
'';
};
passwordRequired = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = true;
description = ''
Whether the user password is required to unlock the screen.
'';
};
passwordRequiredDelay = lib.mkOption {
type = with lib.types; nullOr ints.unsigned;
default = null;
example = 5;
description = ''
The time it takes in seconds for the password to be required after the screen is locked.
'';
};
lockOnStartup = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = false;
description = ''
Whether to lock the screen on startup.
**Note:** This option is not provided in the System Settings app.
'';
};
appearance = {
alwaysShowClock = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = false;
description = ''
Whether to always show the clock on the lockscreen, even if the unlock dialog is not shown.
'';
};
showMediaControls = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = false;
description = ''
Whether to show media controls on the lockscreen.
'';
};
wallpaper = lib.mkOption {
type = with lib.types; nullOr path;
default = null;
example = lib.literalExpression ''"''${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Kay/contents/images/1080x1920.png"'';
description = ''
The wallpaper for the lockscreen. Can be either the path to an image file or a KPackage.
'';
};
wallpaperPictureOfTheDay = lib.mkOption {
type = lib.types.nullOr wallpaperPictureOfTheDayType;
default = null;
example = {
provider = "apod";
};
description = ''
Which plugin to fetch the Picture of the Day from.
'';
};
wallpaperSlideShow = lib.mkOption {
type = lib.types.nullOr wallpaperSlideShowType;
default = null;
example = lib.literalExpression ''{ path = "''${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/"; }'';
description = ''
Allows you to set the wallpaper using the slideshow plugin. Needs the path
to at least one directory with wallpaper images.
'';
};
wallpaperPlainColor = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "0,64,174,256";
description = ''
Set the wallpaper using a plain color. Color is a comma-seperated R,G,B,A string. The alpha is optional (default is 256).
'';
};
};
};
imports = [
(lib.mkRenamedOptionModule
[
"programs"
"plasma"
"kscreenlocker"
"wallpaper"
]
[
"programs"
"plasma"
"kscreenlocker"
"appearance"
"wallpaper"
]
)
(lib.mkRenamedOptionModule
[
"programs"
"plasma"
"kscreenlocker"
"wallpaperPictureOfTheDay"
]
[
"programs"
"plasma"
"kscreenlocker"
"appearance"
"wallpaperPictureOfTheDay"
]
)
(lib.mkRenamedOptionModule
[
"programs"
"plasma"
"kscreenlocker"
"wallpaperSlideShow"
]
[
"programs"
"plasma"
"kscreenlocker"
"appearance"
"wallpaperSlideShow"
]
)
(lib.mkRenamedOptionModule
[
"programs"
"plasma"
"kscreenlocker"
"wallpaperPlainColor"
]
[
"programs"
"plasma"
"kscreenlocker"
"appearance"
"wallpaperPlainColor"
]
)
];
config = {
assertions = [
{
assertion =
let
wallpapers = with cfg.kscreenlocker.appearance; [
wallpaperSlideShow
wallpaper
wallpaperPictureOfTheDay
wallpaperPlainColor
];
in
lib.count (x: x != null) wallpapers <= 1;
message = "Can set only one of wallpaper, wallpaperSlideShow, wallpaperPictureOfTheDay, and wallpaperPlainColor for kscreenlocker.";
}
];
programs.plasma.configFile.kscreenlockerrc = (
lib.mkMerge [
(lib.mkIf (cfg.kscreenlocker.appearance.wallpaper != null) {
Greeter.WallpaperPlugin = "org.kde.image";
"Greeter/Wallpaper/org.kde.image/General".Image = (
builtins.toString cfg.kscreenlocker.appearance.wallpaper
);
})
(lib.mkIf (cfg.kscreenlocker.appearance.wallpaperPictureOfTheDay != null) {
Greeter.WallpaperPlugin = "org.kde.potd";
"Greeter/Wallpaper/org.kde.potd/General" = {
Provider = cfg.kscreenlocker.appearance.wallpaperPictureOfTheDay.provider;
UpdateOverMeteredConnection =
with cfg.kscreenlocker.appearance.wallpaperPictureOfTheDay;
(lib.mkIf (updateOverMeteredConnection != null) (if updateOverMeteredConnection then 1 else 0));
};
})
(lib.mkIf (cfg.kscreenlocker.appearance.wallpaperSlideShow != null) {
Greeter.WallpaperPlugin = "org.kde.slideshow";
"Greeter/Wallpaper/org.kde.slideshow/General" = {
SlidePaths =
with cfg.kscreenlocker.appearance.wallpaperSlideShow;
(
if ((builtins.isPath path) || (builtins.isString path)) then
(builtins.toString cfg.kscreenlocker.appearance.wallpaperSlideShow.path)
else
(builtins.concatStringsSep "," cfg.kscreenlocker.appearance.wallpaperSlideShow.path)
);
SlideInterval = cfg.kscreenlocker.appearance.wallpaperSlideShow.interval;
};
})
(lib.mkIf (cfg.kscreenlocker.appearance.wallpaperPlainColor != null) {
Greeter.WallpaperPlugin = "org.kde.color";
"Greeter/Wallpaper/org.kde.color/General".Color = cfg.kscreenlocker.appearance.wallpaperPlainColor;
})
(lib.mkIf (cfg.kscreenlocker.appearance.alwaysShowClock != null) {
"Greeter/LnF/General".alwaysShowClock = cfg.kscreenlocker.appearance.alwaysShowClock;
})
(lib.mkIf (cfg.kscreenlocker.appearance.showMediaControls != null) {
"Greeter/LnF/General".showMediaControls = cfg.kscreenlocker.appearance.showMediaControls;
})
(lib.mkIf (cfg.kscreenlocker.autoLock != null) { Daemon.Autolock = cfg.kscreenlocker.autoLock; })
(lib.mkIf (cfg.kscreenlocker.lockOnResume != null) {
Daemon.LockOnResume = cfg.kscreenlocker.lockOnResume;
})
(lib.mkIf (cfg.kscreenlocker.timeout != null) { Daemon.Timeout = cfg.kscreenlocker.timeout; })
(lib.mkIf (cfg.kscreenlocker.passwordRequiredDelay != null) {
Daemon.LockGrace = cfg.kscreenlocker.passwordRequiredDelay;
})
(lib.mkIf (cfg.kscreenlocker.passwordRequired != null) {
Daemon.RequirePassword = cfg.kscreenlocker.passwordRequired;
})
(lib.mkIf (cfg.kscreenlocker.lockOnStartup != null) {
Daemon.LockOnStart = cfg.kscreenlocker.lockOnStartup;
})
]
);
};
}