mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 23:40:15 +00:00
more stuff
This commit is contained in:
@ -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
|
||||
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user