2021-05-11 02:14:42 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.xdg.systemDirs;
|
|
|
|
|
|
|
|
configDirs = concatStringsSep ":" cfg.config;
|
|
|
|
|
|
|
|
dataDirs = concatStringsSep ":" cfg.data;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = with maintainers; [ tadfisher ];
|
|
|
|
|
|
|
|
options.xdg.systemDirs = {
|
|
|
|
config = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''[ "/etc/xdg" ]'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Directory names to add to {env}`XDG_CONFIG_DIRS`
|
2021-05-11 02:14:42 +02:00
|
|
|
in the user session.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
data = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''[ "/usr/share" "/usr/local/share" ]'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Directory names to add to {env}`XDG_DATA_DIRS`
|
2021-05-11 02:14:42 +02:00
|
|
|
in the user session.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkMerge [
|
2021-07-07 23:24:27 +02:00
|
|
|
(mkIf (cfg.config != [ ] || cfg.data != [ ]) {
|
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "xdg.systemDirs" pkgs platforms.linux)
|
|
|
|
];
|
|
|
|
})
|
|
|
|
|
2021-05-11 02:14:42 +02:00
|
|
|
(mkIf (cfg.config != [ ]) {
|
2021-05-16 23:43:50 +02:00
|
|
|
home.sessionVariables.XDG_CONFIG_DIRS =
|
|
|
|
"${configDirs}\${XDG_CONFIG_DIRS:+:$XDG_CONFIG_DIRS}";
|
|
|
|
|
2021-05-11 02:14:42 +02:00
|
|
|
systemd.user.sessionVariables.XDG_CONFIG_DIRS =
|
|
|
|
"${configDirs}\${XDG_CONFIG_DIRS:+:$XDG_CONFIG_DIRS}";
|
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf (cfg.data != [ ]) {
|
2021-05-16 23:43:50 +02:00
|
|
|
home.sessionVariables.XDG_DATA_DIRS =
|
|
|
|
"${dataDirs}\${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}";
|
|
|
|
|
2021-05-11 02:14:42 +02:00
|
|
|
systemd.user.sessionVariables.XDG_DATA_DIRS =
|
|
|
|
"${dataDirs}\${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|