dotfiles/modules/common/shell/charm.nix

16 lines
327 B
Nix
Raw Normal View History

2022-12-21 21:18:03 +00:00
{ config, pkgs, lib, ... }: {
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
];
};
}