atuin: Move module into the shell namespace

This commit is contained in:
SebastianStork 2026-02-10 20:42:56 +01:00
parent 2dffcf64c1
commit b5ce26226e
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
2 changed files with 3 additions and 3 deletions

View file

@ -6,9 +6,9 @@
... ...
}: }:
{ {
options.custom.programs.atuin.enable = lib.mkEnableOption ""; options.custom.programs.shell.atuin.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.atuin.enable { config = lib.mkIf config.custom.programs.shell.atuin.enable {
programs.atuin = { programs.atuin = {
enable = true; enable = true;
forceOverwriteSettings = true; forceOverwriteSettings = true;

View file

@ -26,8 +26,8 @@
zsh.enable = true; zsh.enable = true;
aliases.enable = true; aliases.enable = true;
direnv.enable = true; direnv.enable = true;
atuin.enable = true;
}; };
atuin.enable = true;
ssh.enable = true; ssh.enable = true;
git.enable = true; git.enable = true;
kitty.enable = true; kitty.enable = true;