dotfiles/modules/common/shell/charm.nix

23 lines
409 B
Nix
Raw Permalink Normal View History

2024-04-20 13:42:06 +00:00
{
config,
pkgs,
lib,
...
}:
{
2023-07-31 00:26:23 +00:00
# Convenience utilities from charm.sh
2022-12-21 21:18:03 +00:00
options.charm.enable = lib.mkEnableOption "Charm utilities.";
2022-12-21 21:38:34 +00:00
config.home-manager.users.${config.user} = lib.mkIf config.charm.enable {
home.packages = with pkgs; [
glow # Markdown previews
skate # Key-value store
charm # Manage account and filesystem
pop # Send emails from a TUI
];
};
}