From 4434093128c579cba8277443adc4feaf13709767 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 4 Apr 2025 01:15:38 -0500 Subject: [PATCH] added some utilities --- configuration.nix | 13 +++++++------ home-manager/default.nix | 4 ++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/configuration.nix b/configuration.nix index a1d9952..14278d5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -28,6 +28,7 @@ eza sops gdbm + btop ]; virtualisation.docker.enable = true; @@ -37,12 +38,12 @@ services.openssh.enable = true; services.tailscale.enable = true; - services.cron = { - enable = true; - systemCronJobs = [ - "30 2 * * * /run/current-system/sw/bin/nfsu > /etc/nixos/auto_update.log 2>&1" - ]; - }; + # services.cron = { + # enable = true; + # systemCronJobs = [ + # "30 2 * * * /run/current-system/sw/bin/nfsu > /etc/nixos/auto_update.log 2>&1" + # ]; + # }; # systemd.timers."auto-update" = { # wantedBy = [ "timers.target" ]; diff --git a/home-manager/default.nix b/home-manager/default.nix index d4e15a9..8e1f07b 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -23,6 +23,10 @@ (import ./zsh.nix) (import ./git.nix {inherit userSettings;}) ]; + home.packages = with pkgs; [ + # Add any additional packages you want to install in your home directory + superfile + ]; programs = { ssh.enable = true; gh.enable = true;