nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 9d98f3c456996f066cf1a8f12e3b30a08fe45d8e
parent edef4c580ec96c2e40c9fe59f6f0998875d8d8be
Author: Peter <peter@minskio.co.uk>
Date:   Tue, 23 Dec 2025 17:32:40 +0000

NUR as a common include

For Firefox plugins, mainly

Diffstat:
Acommon/nur.nix | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/common/nur.nix b/common/nur.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + nixpkgs.config.packageOverrides = pkgs: { + nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { + inherit pkgs; + }; + }; +}