mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
19 lines
403 B
Nix
19 lines
403 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
|
|
];
|
|
|
|
};
|
|
|
|
}
|