newer recyclarr
This commit is contained in:
parent
98becf7ae3
commit
2efad47937
2 changed files with 15 additions and 10 deletions
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue