32 lines
425 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{
config,
lib,
2025-01-20 22:35:40 -05:00
pkgs,
2024-04-20 09:42:06 -04:00
...
}:
2025-01-20 22:35:40 -05:00
let
cfg = config.nmasur.profiles.fun;
in
{
2023-07-30 20:26:23 -04:00
2025-01-20 22:35:40 -05:00
options.nmasur.profiles.fun.enable = lib.mkEnableOption "Fun tools";
2022-12-21 14:18:03 -07:00
2025-01-20 22:35:40 -05:00
config = lib.mkIf cfg.enable {
2025-01-29 21:12:48 -05:00
home.packages = lib.mkDefault [
2025-01-20 22:35:40 -05:00
# Charm tools
2025-01-29 21:12:48 -05:00
pkgs.glow # Markdown previews
pkgs.skate # Key-value store
pkgs.charm # Manage account and filesystem
pkgs.pop # Send emails from a TUI
2025-01-20 22:35:40 -05:00
];
2025-01-20 22:35:40 -05:00
};
2025-01-20 22:35:40 -05:00
}