-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathsession.nix
60 lines (59 loc) · 2.18 KB
/
session.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
{ config, lib, ... }:
let
cfg = config.programs.plasma;
in
{
options.programs.plasma.session = {
general = {
askForConfirmationOnLogout = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = true;
description = "Whether to ask for confirmation when shutting down, restarting or logging out";
};
};
sessionRestore = {
restoreOpenApplicationsOnLogin =
let
options = {
onLastLogout = "restorePreviousLogout";
whenSessionWasManuallySaved = "restoreSavedSession";
startWithEmptySession = "emptySession";
};
in
lib.mkOption {
type = with lib.types; nullOr (enum (builtins.attrNames options));
default = null;
example = "startWithEmptySession";
description = ''
Controls how applications are restored on login:
- "onLastLogout": Restores applications that were open during the last logout.
- "whenSessionWasManuallySaved": Restores applications based on a manually saved session.
- "startWithEmptySession": Starts with a clean, empty session each time.
'';
apply = option: if option == null then null else options.${option};
};
excludeApplications = lib.mkOption {
type = with lib.types; nullOr (listOf str);
default = null;
example = [
"firefox"
"xterm"
];
description = "List of applications to exclude from session restore";
apply = apps: if apps == null then null else builtins.concatStringsSep "," apps;
};
};
};
config.programs.plasma.configFile."ksmserverrc".General = lib.mkMerge [
(lib.mkIf (cfg.session.general.askForConfirmationOnLogout != null) {
confirmLogout = cfg.session.general.askForConfirmationOnLogout;
})
(lib.mkIf (cfg.session.sessionRestore.excludeApplications != null) {
excludeApps = cfg.session.sessionRestore.excludeApplications;
})
(lib.mkIf (cfg.session.sessionRestore.restoreOpenApplicationsOnLogin != null) {
loginMode = cfg.session.sessionRestore.restoreOpenApplicationsOnLogin;
})
];
}