From 9e37a1b6f9507ed27080518ff4007988a50c957e Mon Sep 17 00:00:00 2001 From: Rasmus Kirk Date: Mon, 12 Jun 2023 10:02:09 +0000 Subject: [PATCH] programs.joshuto: add the joshuto file manager (#4004) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * joshuto: Added the joshuto file manager * maintainers: Added rasmus-kirk as a maintainer * joshuto: Fixed maintainer information Co-authored-by: Naïm Favier --------- Co-authored-by: Naïm Favier --- modules/lib/maintainers.nix | 6 +++ modules/modules.nix | 1 + modules/programs/joshuto.nix | 88 ++++++++++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 modules/programs/joshuto.nix diff --git a/modules/lib/maintainers.nix b/modules/lib/maintainers.nix index 6645e7c2a..1f976d8ae 100644 --- a/modules/lib/maintainers.nix +++ b/modules/lib/maintainers.nix @@ -335,6 +335,12 @@ github = "sebtm"; githubId = 17243347; }; + rasmus-kirk = { + name = "Rasmus Kirk"; + email = "mail@rasmuskirk.com"; + github = "rasmus-kirk"; + githubId = 57323869; + }; rosuavio = { name = "Rosario Pulella"; email = "RosarioPulella@gmail.com"; diff --git a/modules/modules.nix b/modules/modules.nix index 736922d5d..e2d3fb0cf 100644 --- a/modules/modules.nix +++ b/modules/modules.nix @@ -105,6 +105,7 @@ let ./programs/java.nix ./programs/jq.nix ./programs/jujutsu.nix + ./programs/joshuto.nix ./programs/just.nix ./programs/k9s.nix ./programs/kakoune.nix diff --git a/modules/programs/joshuto.nix b/modules/programs/joshuto.nix new file mode 100644 index 000000000..63c325236 --- /dev/null +++ b/modules/programs/joshuto.nix @@ -0,0 +1,88 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.programs.joshuto; + tomlFormat = pkgs.formats.toml { }; +in { + meta.maintainers = [ hm.maintainers.rasmus-kirk ]; + + options.programs.joshuto = { + enable = mkEnableOption "joshuto file manager"; + + package = mkOption { + type = types.package; + default = pkgs.joshuto; + defaultText = literalExpression "pkgs.joshuto"; + description = "The package to use for joshuto."; + }; + + settings = mkOption { + type = tomlFormat.type; + default = { }; + description = '' + Configuration written to + $XDG_CONFIG_HOME/joshuto/joshuto.toml. + + See + for the full list of options. + ''; + }; + + keymap = mkOption { + type = tomlFormat.type; + default = { }; + description = '' + Configuration written to + $XDG_CONFIG_HOME/joshuto/keymap.toml. + + See + for the full list of options. Note that this option will overwrite any existing keybinds. + ''; + }; + + mimetype = mkOption { + type = tomlFormat.type; + default = { }; + description = '' + Configuration written to + $XDG_CONFIG_HOME/joshuto/mimetype.toml. + + See + for the full list of options + ''; + }; + + theme = mkOption { + type = tomlFormat.type; + default = { }; + description = '' + Configuration written to + $XDG_CONFIG_HOME/joshuto/theme.toml. + + See + 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; + }; + }; + }; +}