1
0
Fork 0

et: install on more systems

This commit is contained in:
Daniel Kempkens 2024-01-21 22:55:44 +01:00
parent a946ce009c
commit 4169bc6a68
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 7 additions and 3 deletions

View file

@ -11,6 +11,7 @@ in
../shared/show-update-changelog.nix ../shared/show-update-changelog.nix
../nixos/raspberry.nix ../nixos/raspberry.nix
../nixos/ssh.nix ../nixos/ssh.nix
../nixos/eternal-terminal.nix
../nixos/git.nix ../nixos/git.nix
@ -200,7 +201,7 @@ in
description = "Daniel"; description = "Daniel";
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
shell = pkgs.fish; shell = pkgs.fish;
openssh.authorizedKeys.keys = [ ssh-keys.LAN ]; openssh.authorizedKeys.keys = [ ssh-keys.LAN ssh-keys.DanielsPhone ];
}; };
nix-remote-builder = { nix-remote-builder = {

View file

@ -11,6 +11,7 @@ in
../../agenix/hosts/tanker/config.nix ../../agenix/hosts/tanker/config.nix
../shared/show-update-changelog.nix ../shared/show-update-changelog.nix
../nixos/ssh.nix ../nixos/ssh.nix
../nixos/eternal-terminal.nix
../nixos/msmtp.nix ../nixos/msmtp.nix
../nixos/smartd.nix ../nixos/smartd.nix
@ -194,7 +195,7 @@ in
description = "Daniel"; description = "Daniel";
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
shell = pkgs.fish; shell = pkgs.fish;
openssh.authorizedKeys.keys = [ ssh-keys.Hetzner ]; openssh.authorizedKeys.keys = [ ssh-keys.Hetzner ssh-keys.DanielsPhone ];
}; };
}; };
} }

View file

@ -10,7 +10,8 @@ in
description = "Nitter (An alternative Twitter front-end)"; description = "Nitter (An alternative Twitter front-end)";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
requires = [ "redis-nitter.service" ]; requires = [ "redis-nitter.service" ];
after = [ "network.target" "network-online.target" "redis-nitter.service" ]; wants = [ "network-online.target" ];
after = [ "network-online.target" "redis-nitter.service" ];
serviceConfig = { serviceConfig = {
DynamicUser = true; DynamicUser = true;
StateDirectory = "nitter"; StateDirectory = "nitter";

View file

@ -4,6 +4,7 @@
systemd.services.weewx-proxy = { systemd.services.weewx-proxy = {
description = "A proxy service for WeeWX sources"; description = "A proxy service for WeeWX sources";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" ]; after = [ "network-online.target" ];
serviceConfig = { serviceConfig = {
DynamicUser = true; DynamicUser = true;