diff --git a/hosts/garden/default.nix b/hosts/garden/default.nix index 144a69c..b002595 100644 --- a/hosts/garden/default.nix +++ b/hosts/garden/default.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: { imports = [ @@ -48,5 +48,7 @@ group = config.services.lidarr.group; }; + environment.systemPackages = with pkgs; [ shntool ]; + system.stateVersion = "23.11"; }