mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-18 14:28:15 +00:00
Can generate the config without installing application through home-manager. Helpful when a package is broken (or not provided) on a specific platform through nixpkgs and needs to be installed through other means but you still can benefit from the declarative configuration.
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.micro;
|
|
|
|
jsonFormat = pkgs.formats.json { };
|
|
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.mforster ];
|
|
|
|
options = {
|
|
programs.micro = {
|
|
enable = mkEnableOption "micro, a terminal-based text editor";
|
|
|
|
package = mkPackageOption pkgs "micro" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
type = jsonFormat.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
autosu = false;
|
|
cursorline = false;
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration written to
|
|
{file}`$XDG_CONFIG_HOME/micro/settings.json`. See
|
|
<https://github.com/zyedidia/micro/blob/master/runtime/help/options.md>
|
|
for supported values.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."micro/settings.json".source =
|
|
jsonFormat.generate "micro-settings" cfg.settings;
|
|
};
|
|
}
|