nixos/modules/home/shell/atuin/default.nix

22 lines
No EOL
425 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.cli.atuin;
in
{
options.modules.cli.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";
};
};
};
}