Files
flake/home/modules/atuin.nix
T
2026-01-23 10:43:06 +08:00

12 lines
238 B
Nix

{ lib, ... }:
{
programs.atuin = {
enable = true;
# 我自己会写 zshrc 集成的部分,所以关掉自动集成
enableZshIntegration = false;
};
home.file =
(lib.origami404.standaloneToHome ".config/atuin");
}