OwnTracks works now

This commit is contained in:
Gene Liverman 2024-06-16 07:31:27 -04:00
parent c68680eff4
commit 158397df0c
5 changed files with 108 additions and 31 deletions

View file

@ -1,8 +1,7 @@
{ username, ... }: {
{ pkgs, username, ... }: {
imports = [
./hardware-configuration.nix
./disk-config.nix
./owntracks.nix
./post-install-general.nix
./post-install-nginx.nix
];
@ -17,6 +16,11 @@
efiInstallAsRemovable = true;
};
environment.systemPackages = with pkgs; [
podman-tui # status of containers in the terminal
podman-compose
];
networking = {
# Open ports in the firewall.
firewall.allowedTCPPorts = [
@ -74,6 +78,7 @@
isNormalUser = true;
description = "Gene Liverman";
extraGroups = [ "networkmanager" "wheel" ];
linger = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBjigwV0KnnaTnFmKjjvnULa5X+hvsy2FAlu+lUUY59f gene@rainbow-planet"
];