From d09c21a1d8ca7a0081839840dfe9bcbcce1cc459 Mon Sep 17 00:00:00 2001 From: jaina heartles Date: Sat, 20 Apr 2024 02:12:10 -0700 Subject: [PATCH] Add UNIX `at` to packages --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 38eca87..917f9b0 100644 --- a/configuration.nix +++ b/configuration.nix @@ -40,6 +40,7 @@ less killall screen + at ]; users.users.jaina = { @@ -66,5 +67,6 @@ services.openssh.settings.PasswordAuthentication = false; services.openssh.ports = [ 9922 ]; networking.firewall.allowedTCPPorts = [ 9922 ]; + services.cron.enable = true; system.stateVersion = "23.11"; }