mirror of
https://github.com/nix-community/home-manager.git
synced 2024-12-14 11:57:55 +00:00
atuin: capitalize mentions of "atuin"
This commit is contained in:
parent
c56aa0f51d
commit
f8bc330a13
1 changed files with 4 additions and 4 deletions
|
@ -149,13 +149,13 @@ in {
|
||||||
{
|
{
|
||||||
assertion = versionAtLeast cfg.package.version "18.2.0";
|
assertion = versionAtLeast cfg.package.version "18.2.0";
|
||||||
message = ''
|
message = ''
|
||||||
The atuin daemon requires at least version 18.2.0 or later.
|
The Atuin daemon requires at least version 18.2.0 or later.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
assertion = isLinux || isDarwin;
|
assertion = isLinux || isDarwin;
|
||||||
message =
|
message =
|
||||||
"The atuin daemon can only be configured on either Linux or macOS.";
|
"The Atuin daemon can only be configured on either Linux or macOS.";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -166,7 +166,7 @@ in {
|
||||||
|
|
||||||
systemd.user.services.atuin-daemon = {
|
systemd.user.services.atuin-daemon = {
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "atuin daemon";
|
Description = "Atuin daemon";
|
||||||
Requires = [ "atuin-daemon.socket" ];
|
Requires = [ "atuin-daemon.socket" ];
|
||||||
};
|
};
|
||||||
Install = {
|
Install = {
|
||||||
|
@ -183,7 +183,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.sockets.atuin-daemon = {
|
systemd.user.sockets.atuin-daemon = {
|
||||||
Unit = { Description = "atuin daemon socket"; };
|
Unit = { Description = "Atuin daemon socket"; };
|
||||||
Install = { WantedBy = [ "sockets.target" ]; };
|
Install = { WantedBy = [ "sockets.target" ]; };
|
||||||
Socket = {
|
Socket = {
|
||||||
ListenStream = "%h/.local/share/atuin/atuin.sock";
|
ListenStream = "%h/.local/share/atuin/atuin.sock";
|
||||||
|
|
Loading…
Reference in a new issue