newer recyclarr

This commit is contained in:
Chris Dombroski 2024-08-20 09:34:22 -04:00
parent 98becf7ae3
commit 2efad47937
2 changed files with 15 additions and 10 deletions

View file

@ -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 {

View file

@ -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;