From 2efad47937d7920666fce9a7c82ff0f64f994ca7 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Tue, 20 Aug 2024 09:34:22 -0400 Subject: [PATCH] newer recyclarr --- flake.nix | 7 ++++++- systems/zeus/configuration.nix | 18 +++++++++--------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 95568a7..77bd3ff 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,12 @@ outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, deploy-rs , impermanence, stylix, nixos-hardware, nixunstable, ... }: let - pkgs = import nixpkgs { system = "x86_64-linux"; }; + pkgs = import nixpkgs { + system = "x86_64-linux"; + overlays = [ + (import ./overlays/recyclarr.nix) + ]; + }; aarch64Pkgs = import nixpkgs { system = "aarch64-linux"; }; pkgs-unstable = import nixunstable { system = "x86_64-linux"; }; deployAarch64Pkgs = import nixpkgs { diff --git a/systems/zeus/configuration.nix b/systems/zeus/configuration.nix index c42d9b8..4f3ab91 100644 --- a/systems/zeus/configuration.nix +++ b/systems/zeus/configuration.nix @@ -1,4 +1,4 @@ -{ config, pkgs, pkgs-unstable, ... }: +{ config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. @@ -279,14 +279,14 @@ ]; }; environment = { - systemPackages = [ - pkgs.vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - pkgs.dive - pkgs.podman-tui - pkgs.docker-compose - pkgs.tcpdump - pkgs.ethtool - pkgs-unstable.recyclarr + systemPackages = with pkgs; [ + vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + dive + podman-tui + docker-compose + tcpdump + ethtool + recyclarr ]; persistence."/persist" = { hideMounts = true;