From 5600d61c353cebcb7192673edaba4f43c2e004d3 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 27 Mar 2024 15:45:34 +0000 Subject: [PATCH] Add packages and services --- machines/talos/configuration.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/machines/talos/configuration.nix b/machines/talos/configuration.nix index cca39d4..4c7813e 100644 --- a/machines/talos/configuration.nix +++ b/machines/talos/configuration.nix @@ -82,16 +82,24 @@ git lsof gnumake + firefox + python3 ]; programs.zsh.enable = true; # Enable the OpenSSH daemon. - services.openssh = { - enable = true; - settings = { - PermitRootLogin = "yes"; + services { + openssh = { + enable = true; + settings = { + PermitRootLogin = "yes"; + }; }; + locate.enable = true; + upower.enable = true; + thermald.enable = true; + fwupd.enable = true; }; networking.firewall.enable = true;