1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/modules/programs/superfile.nix
2025-11-04 14:06:39 -06:00

238 lines
6.2 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.superfile;
tomlFormat = pkgs.formats.toml { };
jsonFormat = pkgs.formats.json { };
inherit (pkgs.stdenv.hostPlatform) isDarwin;
inherit (lib)
literalExpression
mapAttrs'
mkEnableOption
mkIf
mkMerge
mkOption
mkPackageOption
nameValuePair
optional
recursiveUpdate
types
hm
;
pinnedFolderModule = types.submodule {
freeformType = jsonFormat.type;
options = {
name = mkOption {
type = types.nullOr types.str;
default = null;
example = "Nix Store";
description = ''
Name that will be shown.
'';
};
location = mkOption {
type = types.path;
example = "/nix/store";
description = ''
Location of the pinned entry.
'';
};
};
};
in
{
meta.maintainers = [ hm.maintainers.LucasWagler ];
options.programs.superfile = {
enable = mkEnableOption "superfile - Pretty fancy and modern terminal file manager";
package = mkPackageOption pkgs "superfile" { nullable = true; };
metadataPackage = mkPackageOption pkgs "exiftool" { nullable = true; };
zoxidePackage = mkPackageOption pkgs "zoxide" { nullable = true; };
settings = mkOption {
type = tomlFormat.type;
default = { };
description = ''
Configuration written to {file}`$XDG_CONFIG_HOME/superfile/config.toml`
(linux) or {file}`Library/Application Support/superfile/config.toml` (darwin), See
<https://superfile.netlify.app/configure/superfile-config/> for supported values.
'';
example = literalExpression ''
theme = "catppuccin-frappe";
default_sort_type = 0;
transparent_background = false;
'';
};
hotkeys = mkOption {
type = tomlFormat.type;
default = { };
description = ''
Hotkey configuration written to {file}`$XDG_CONFIG_HOME/superfile/hotkeys.toml`
(linux) or {file}`Library/Application Support/superfile/hotkeys.toml` (darwin), See
<https://superfile.netlify.app/configure/custom-hotkeys/> for supported values.
'';
example = literalExpression ''
confirm = [
"enter"
"right"
"l"
];
'';
};
themes = mkOption {
type = with types; attrsOf (either tomlFormat.type path);
default = { };
description = ''
Theme files written to {file}`$XDG_CONFIG_HOME/superfile/theme/`
(linux) or {file}`Library/Application Support/superfile/theme/` (darwin), See
<https://superfile.netlify.app/configure/custom-theme/> for supported values.
'';
example = literalExpression ''
myTheme = {
code_syntax_highlight = "catppuccin-latte";
file_panel_border = "#101010";
sidebar_border = "#101011";
footer_border = "#101012";
gradient_color = [
"#101013"
"#101014"
];
# ...
};
myOtherFavoriteTheme = {
code_syntax_highlight = "catppuccin-mocha";
file_panel_border = "#505050";
sidebar_border = "#505051";
footer_border = "#505052";
gradient_color = [
"#505053"
"#505054"
];
# ...
};
'';
};
firstUseCheck = mkOption {
type = types.bool;
default = true;
description = ''
Enables the first time use popup.
'';
};
pinnedFolders = mkOption {
type = types.listOf pinnedFolderModule;
default = [ ];
example = literalExpression ''
[
{
name = "Nix Store";
location = "/nix/store";
}
];
'';
description = ''
Entries that get added to the pinned panel.
'';
};
};
config =
let
enableXdgConfig = !isDarwin || config.xdg.enable;
baseConfigPath = if enableXdgConfig then "superfile" else "Library/Application Support/superfile";
baseDataPath = if enableXdgConfig then "superfile" else "Library/Application Support/superfile";
themeSetting =
if (!(cfg.settings ? theme) && cfg.themes != { }) then
{
theme = "${builtins.elemAt (builtins.attrNames cfg.themes) 0}";
}
else
{ };
configFile = mkIf (cfg.settings != { }) {
"${baseConfigPath}/config.toml".source = tomlFormat.generate "superfile-config.toml" (
recursiveUpdate themeSetting cfg.settings
);
};
hotkeysFile = mkIf (cfg.hotkeys != { }) {
"${baseConfigPath}/hotkeys.toml".source = tomlFormat.generate "superfile-hotkeys.toml" (
cfg.hotkeys
);
};
themeFiles = mapAttrs' (
name: value:
nameValuePair "${baseConfigPath}/theme/${name}.toml" {
source =
if types.path.check value then
value
else
(tomlFormat.generate "superfile-theme-${name}.toml" value);
}
) cfg.themes;
firstUseCheckFile = mkIf (!cfg.firstUseCheck) { "${baseDataPath}/firstUseCheck".text = ""; };
pinnedFile = mkIf (cfg.pinnedFolders != [ ]) {
"${baseDataPath}/pinned.json".source = jsonFormat.generate "pinned.json" cfg.pinnedFolders;
};
files = mkMerge [
configFile
hotkeysFile
themeFiles
firstUseCheckFile
pinnedFile
];
configFiles = mkMerge [
configFile
hotkeysFile
themeFiles
];
dataFiles = mkMerge [
firstUseCheckFile
pinnedFile
];
in
mkIf cfg.enable {
home = {
packages = mkIf (cfg.package != null) (
[ cfg.package ]
++ optional (
cfg.metadataPackage != null && cfg.settings ? metadata && cfg.settings.metadata
) cfg.metadataPackage
++ optional (
cfg.zoxidePackage != null && cfg.settings ? zoxide_support && cfg.settings.zoxide_support
) cfg.zoxidePackage
);
file = mkIf (!enableXdgConfig) files;
};
xdg = {
configFile = mkIf enableXdgConfig configFiles;
dataFile = mkIf enableXdgConfig dataFiles;
};
};
}