clean up and improve docs

This commit is contained in:
Noah Masur
2023-07-30 20:26:23 -04:00
parent ef2ee7b871
commit 3d6f57c324
18 changed files with 102 additions and 65 deletions

View File

@ -1,5 +1,7 @@
{ config, pkgs, lib, ... }: {
# Convenience utilities from charm.sh
options.charm.enable = lib.mkEnableOption "Charm utilities.";
config.home-manager.users.${config.user} = lib.mkIf config.charm.enable {

View File

@ -1,5 +1,6 @@
{ config, ... }: {
# Enables quickly entering Nix shells when changing directories
home-manager.users.${config.user}.programs.direnv = {
enable = true;
nix-direnv.enable = true;

View File

@ -1,5 +1,7 @@
{ config, ... }: {
# FZF is a fuzzy-finder for the terminal
home-manager.users.${config.user} = {
programs.fzf.enable = true;