From 5cad713a364c8d36b548d99ebb5eb81ac82987ab Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 13 Sep 2024 02:31:08 +0000 Subject: [PATCH] added appdaemon installation --- configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.nix b/configuration.nix index 3d4c6ec..f81ce77 100644 --- a/configuration.nix +++ b/configuration.nix @@ -7,12 +7,16 @@ ]; environment.systemPackages = with pkgs; [ + (pkgs.writeShellScriptBin "nrbs" '' + nixos-rebuild switch + '') bash wget git eza python312 uv + appdaemon ]; virtualisation.docker.enable = true;