2023-06-12 12:02:09 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.joshuto;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ hm.maintainers.rasmus-kirk ];
|
|
|
|
|
|
|
|
options.programs.joshuto = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "joshuto file manager";
|
2023-06-12 12:02:09 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.joshuto;
|
|
|
|
defaultText = literalExpression "pkgs.joshuto";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "The package to use for joshuto.";
|
2023-06-12 12:02:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-12 12:02:09 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/joshuto/joshuto.toml`.
|
|
|
|
|
|
|
|
See <https://github.com/kamiyaa/joshuto/blob/main/docs/configuration/joshuto.toml.md>
|
2023-06-12 12:02:09 +02:00
|
|
|
for the full list of options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
keymap = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-12 12:02:09 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/joshuto/keymap.toml`.
|
|
|
|
|
|
|
|
See <https://github.com/kamiyaa/joshuto/blob/main/docs/configuration/keymap.toml.md>
|
2023-06-12 12:02:09 +02:00
|
|
|
for the full list of options. Note that this option will overwrite any existing keybinds.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
mimetype = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-12 12:02:09 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/joshuto/mimetype.toml`.
|
|
|
|
|
|
|
|
See <https://github.com/kamiyaa/joshuto/blob/main/docs/configuration/mimetype.toml.md>
|
2023-06-12 12:02:09 +02:00
|
|
|
for the full list of options
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
theme = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-12 12:02:09 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/joshuto/theme.toml`.
|
|
|
|
|
|
|
|
See <https://github.com/kamiyaa/joshuto/blob/main/docs/configuration/theme.toml.md>
|
2023-06-12 12:02:09 +02:00
|
|
|
for the full list of options
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
xdg.configFile = {
|
|
|
|
"joshuto/joshuto.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "joshuto-settings" cfg.settings;
|
|
|
|
};
|
|
|
|
"joshuto/keymap.toml" = mkIf (cfg.keymap != { }) {
|
|
|
|
source = tomlFormat.generate "joshuto-keymap" cfg.keymap;
|
|
|
|
};
|
|
|
|
"joshuto/mimetype.toml" = mkIf (cfg.mimetype != { }) {
|
|
|
|
source = tomlFormat.generate "joshuto-mimetype" cfg.mimetype;
|
|
|
|
};
|
|
|
|
"joshuto/theme.toml" = mkIf (cfg.theme != { }) {
|
|
|
|
source = tomlFormat.generate "joshuto-theme" cfg.theme;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|