more stuff

This commit is contained in:
Noah Masur
2025-02-01 16:10:16 -05:00
parent ea3ab18cca
commit 1226eafef2
34 changed files with 291 additions and 308 deletions

View File

@ -0,0 +1,31 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.nmasur.profiles.experimental;
in
{
options.nmasur.profiles.experimental.enable = lib.mkEnableOption "experimental 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
];
};
}