Personal Nix User Repository
Go to file
xeals 0b76292a1f
cardboard: remove
Upstreamed and maintained.
2024-01-04 15:17:12 +11:00
.gitea ci: override github access token 2023-11-14 22:06:28 +11:00
bin jetbrains: add plugin generation script 2020-10-19 19:10:14 +11:00
lib Initial commit 2020-10-17 12:39:29 +11:00
modules modules/porkbun-ddns: init 2023-11-09 09:50:08 +11:00
overlays Initial commit 2020-10-17 12:39:29 +11:00
pkgs cardboard: remove 2024-01-04 15:17:12 +11:00
.gitignore core: remove envrc 2021-01-04 10:49:36 +11:00
ci.nix ci: pin nixpkgs to locked version instead of <nixpkgs> 2023-02-23 10:24:19 +11:00
default.nix all: refactor to follow RFC140 2023-09-21 12:28:32 +10:00
flake-compat.nix ci: pin nixpkgs to locked version instead of <nixpkgs> 2023-02-23 10:24:19 +11:00
flake.lock flake: update inputs 2024-01-04 14:57:07 +11:00
flake.nix flake: remove lib inherit 2024-01-04 15:16:49 +11:00
LICENSE Initial commit 2020-10-17 12:39:29 +11:00
overlay.nix all: apply deadnix 2022-10-26 10:53:36 +11:00
README.md docs: update README 2024-01-04 14:57:21 +11:00

nur-packages

My personal NUR repository

CI Cachix Cache

Using

Using packages is easier through the combined NUR flake.

# flake.nix
{
  inputs = {
    xeals.url = "git+https://git.xeal.me/xeals/nur-packages"; # Direct
    xeals.url = "github:xeals/nur-packages"; # GitHub mirror
  };
  
  outputs = { nixpkgs, xeals, ... }: {
    nixosConfigurations.foo = nixpkgs.lib.nixosSystem {
      modules = [
        xeals.nixosModules.betanin
      ];
    };
  };
}