19 lines
403 B
Nix
Raw Normal View History

2022-12-21 14:18:03 -07:00
{ config, pkgs, lib, ... }: {
2023-07-30 20:26:23 -04:00
# Convenience utilities from charm.sh
2022-12-21 14:18:03 -07:00
options.charm.enable = lib.mkEnableOption "Charm utilities.";
2022-12-21 14:38:34 -07: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
];
};
}