Empower your configuration with the Sanctureplicum User Repository, and explore a sprawling collection of packages, lurking in the shadows, waiting to be unleashed with the same reproducible and declarative principles that underpin the core of the Sanctureplicum configuration
 
 
Go to file
Carsten Kragelund 72e258ac34 bulding on macos 2023-06-16 06:39:14 +02:00
.github Prayge for working CI now 2023-05-08 04:50:12 +02:00
lib Initial commit 2023-04-12 14:45:08 +02:00
modules Initial commit 2023-04-12 14:45:08 +02:00
overlays Initial commit 2023-04-12 14:45:08 +02:00
pkgs bulding on macos 2023-06-16 06:39:14 +02:00
.gitignore Initial commit 2023-04-12 14:45:08 +02:00
LICENSE Initial commit 2023-04-12 14:45:08 +02:00
README.md Update README 2023-05-10 06:02:56 +02:00
ci.nix Initial commit 2023-04-12 14:45:08 +02:00
default.nix overwrite gitea version and tags manually 2023-05-20 02:07:58 +02:00
flake.lock remove stale inputs and update gitea rev 2023-05-09 00:54:46 +02:00
flake.nix remove stale inputs and update gitea rev 2023-05-09 00:54:46 +02:00
overlay.nix Initial commit 2023-04-12 14:45:08 +02:00

README.md

sanctureplicum/nur

Cachix Cache

What's available

General Packages Note Version
gitea-nyx Personal Fork 1.19.3
rec-mono-nyx Personal config of Recursive Mono 1.0.0
libspectre 1.0.0
Firefox Addons Note Version
duplicate-tab-shortcut 1.5.3
istilldontcareaboutcookies 1.1.1
masterpassword-firefox Spectre, formerly MasterPassword 2.9.5
Emacs Packages Note Version
spectre-el 0.3.0

Usage

With overlays:

{
  inputs = {
    nur.url = "github:nix-community/NUR";
    sanctureplicum-nur.url = "git+https://gitea.pid1.sh/sanctureplicum/nur.git";
  };

  outputs = {
    self,
    nixpkgs,
    nur,
    sanctureplicum-nur,
    ...
  }: let
    overlays = final: prev: {
      nur = import nur {
        nurpkgs = prev;
        pkgs = prev;
        repoOverrides = { sanctureplicum = import sanctureplicum-nur { pkgs = prev; }; };
      };
      # ... your other overlays
    };
  in {
    system = "x86_64-linux";

    modules = [
      ({ config, ... }: {
        config = {
          nixpkgs.overlays = [
            overlays
          ];
        };
      })
    ];
  };
}