Personal Nix User Repository
Go to file
xeals 3ef84a6b8c
Some checks failed
CI / checks (nur) (push) Successful in 3m29s
CI / build-and-update (xeals, xeals) (push) Failing after 15m41s
betanin: 0.4.0 -> 0.5.6
2024-08-15 14:11:32 +10:00
.gitea ci: update to install-nix-action@v24 2024-01-15 13:42: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/koillection: init 2024-01-12 14:51:49 +11:00
overlays Initial commit 2020-10-17 12:39:29 +11:00
pkgs betanin: 0.4.0 -> 0.5.6 2024-08-15 14:11:32 +10: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-07-24 21:00:26 +10: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
      ];
    };
  };
}