nixos/modules/home/shell/atuin/default.nix
2024-05-27 22:23:32 +02:00

22 lines
No EOL
437 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.homeModules.shell.atuin;
in
{
options.homeModules.shell.atuin = {
enable = mkEnableOption ''
Enable atuin with my custom configurations
'';
};
config = mkIf cfg.enable {
programs.atuin = {
enable = true;
settings = {
# Uncomment this to use your instance
# sync_address = "https://majiy00-shell.fly.dev";
};
};
};
}