mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
23 lines
409 B
Nix
23 lines
409 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
# Convenience utilities from charm.sh
|
|
|
|
options.charm.enable = lib.mkEnableOption "Charm utilities.";
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|