✨ atuin server
This commit is contained in:
parent
ca17686729
commit
db2003e4e6
19
hosts/hydrogen/services/atuin/default.nix
Normal file
19
hosts/hydrogen/services/atuin/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ ... }: {
|
||||
|
||||
services.atuin = {
|
||||
enable = true;
|
||||
openRegistration = false;
|
||||
maxHistoryLength = 1000000000;
|
||||
};
|
||||
|
||||
services.nginx = {
|
||||
virtualHosts = {
|
||||
"atuin.fainsin.bzh" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = { proxyPass = "http://127.0.0.1:8888"; };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
|
@ -1 +1 @@
|
|||
{ imports = [ ./gitea ./blocky ./wireguard ]; }
|
||||
{ imports = [ ./atuin ./blocky ./gitea ./wireguard ]; }
|
||||
|
|
|
@ -46,6 +46,7 @@ in {
|
|||
programs.atuin = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
settings = { sync_address = "https://atuin.fainsin.bzh"; };
|
||||
};
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue