et: install on more systems
This commit is contained in:
parent
a946ce009c
commit
4169bc6a68
4 changed files with 7 additions and 3 deletions
|
@ -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 = {
|
||||||
|
|
|
@ -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 ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue