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
|
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, deploy-rs
|
||||||
, impermanence, stylix, nixos-hardware, nixunstable, ... }:
|
, impermanence, stylix, nixos-hardware, nixunstable, ... }:
|
||||||
let
|
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"; };
|
aarch64Pkgs = import nixpkgs { system = "aarch64-linux"; };
|
||||||
pkgs-unstable = import nixunstable { system = "x86_64-linux"; };
|
pkgs-unstable = import nixunstable { system = "x86_64-linux"; };
|
||||||
deployAarch64Pkgs = import nixpkgs {
|
deployAarch64Pkgs = import nixpkgs {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, pkgs-unstable, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ # Include the results of the hardware scan.
|
imports = [ # Include the results of the hardware scan.
|
||||||
|
@ -279,14 +279,14 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = [
|
systemPackages = with pkgs; [
|
||||||
pkgs.vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
pkgs.dive
|
dive
|
||||||
pkgs.podman-tui
|
podman-tui
|
||||||
pkgs.docker-compose
|
docker-compose
|
||||||
pkgs.tcpdump
|
tcpdump
|
||||||
pkgs.ethtool
|
ethtool
|
||||||
pkgs-unstable.recyclarr
|
recyclarr
|
||||||
];
|
];
|
||||||
persistence."/persist" = {
|
persistence."/persist" = {
|
||||||
hideMounts = true;
|
hideMounts = true;
|
||||||
|
|
Loading…
Reference in a new issue