22 lines
No EOL
437 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
} |