Begin migrate all cli conf

This commit is contained in:
Florian RICHER 2024-05-25 00:37:37 +02:00
parent e9329e63dc
commit 0aa0f2eb80
9 changed files with 2125 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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";
};
};
};
}