From 3f441e518e33c2a6844a6d448b46b411ec10ac0e Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 5 Sep 2022 23:11:01 -0500 Subject: [PATCH] Move more things to home --- home/home.nix | 11 +++++++++++ hosts/2maccabees/home-assistant.nix | 6 ++++++ modules/automatic/programs.nix | 3 --- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/home/home.nix b/home/home.nix index b9e007d..2486da8 100644 --- a/home/home.nix +++ b/home/home.nix @@ -19,10 +19,21 @@ in { home.stateVersion = "22.05"; home.packages = with pkgs; [ + bitwarden-cli cdrtools + diffutils ffmpeg + findutils + git + gnupatch hms libtheora + nano + tmux + transcrypt + unzip + wget x265 + yamllint ]; } diff --git a/hosts/2maccabees/home-assistant.nix b/hosts/2maccabees/home-assistant.nix index 6db8bf3..2bfbd68 100755 --- a/hosts/2maccabees/home-assistant.nix +++ b/hosts/2maccabees/home-assistant.nix @@ -76,4 +76,10 @@ in enable = true; allowedTCPPorts = [ 80 8091 8123 ]; }; + + greg.backup.jobs.zwave = { + src = "/var/lib/zwave"; + dest = "zwave"; + user = "root"; + }; } diff --git a/modules/automatic/programs.nix b/modules/automatic/programs.nix index f2f273a..ebe8aeb 100644 --- a/modules/automatic/programs.nix +++ b/modules/automatic/programs.nix @@ -10,7 +10,6 @@ in { # Base packages that need to be in all my hosts environment.systemPackages = with pkgs; [ agenix.defaultPackage."${system}" - bitwarden-cli diffutils git gnupatch @@ -20,11 +19,9 @@ in { htop myPython pwgen - tmux transcrypt unzip vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget - yamllint # Used in vim ]; }