mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 22:29:06 +01:00
atuin: Move module into the shell namespace
This commit is contained in:
parent
2dffcf64c1
commit
b5ce26226e
2 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue