From b5ce26226e7dbe22218d5f1e88471b51885b2385 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 10 Feb 2026 20:42:56 +0100 Subject: [PATCH] atuin: Move module into the `shell` namespace --- modules/home/programs/{ => shell}/atuin.nix | 4 ++-- users/seb/home.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename modules/home/programs/{ => shell}/atuin.nix (75%) diff --git a/modules/home/programs/atuin.nix b/modules/home/programs/shell/atuin.nix similarity index 75% rename from modules/home/programs/atuin.nix rename to modules/home/programs/shell/atuin.nix index 6d701a8..7ca5b03 100644 --- a/modules/home/programs/atuin.nix +++ b/modules/home/programs/shell/atuin.nix @@ -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 = { enable = true; forceOverwriteSettings = true; diff --git a/users/seb/home.nix b/users/seb/home.nix index 729fe9c..5f2ff0b 100644 --- a/users/seb/home.nix +++ b/users/seb/home.nix @@ -26,8 +26,8 @@ zsh.enable = true; aliases.enable = true; direnv.enable = true; + atuin.enable = true; }; - atuin.enable = true; ssh.enable = true; git.enable = true; kitty.enable = true;