mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 13:22:04 +00:00
32 lines
425 B
Nix
32 lines
425 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.fun;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.fun.enable = lib.mkEnableOption "Fun tools";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = lib.mkDefault [
|
|
|
|
# Charm tools
|
|
|
|
pkgs.glow # Markdown previews
|
|
pkgs.skate # Key-value store
|
|
pkgs.charm # Manage account and filesystem
|
|
pkgs.pop # Send emails from a TUI
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|