From c8406fc2fa09e09ea4d9a010e5aed5d4f54104fd Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 29 Jun 2025 23:03:34 +0530 Subject: Add yarr (my fork) rss reader + disable send --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 2605a68..60b0459 100644 --- a/flake.nix +++ b/flake.nix @@ -2,14 +2,19 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixos-hardware.url = "github:NixOS/nixos-hardware"; + phenax-yayarr = { + url = "github:phenax/yayarr"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { self, nixpkgs, nixos-hardware, ... }: { + outputs = { self, nixpkgs, nixos-hardware, phenax-yayarr, ... }: { nixosConfigurations.bacchus = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { settings = import ./settings.nix { inherit (nixpkgs) lib; }; inherit nixos-hardware; + phenax-yayarr = phenax-yayarr.packages.x86_64-linux.default; }; modules = [ ./modules/config.nix ]; }; -- cgit v1.3.1