Personal Nix User Repository
Go to file
Patrizio Bekerle 8ccdad907f
Some checks failed
CI / checks (nur) (push) Successful in 3m40s
CI / build-and-update (xeals, xeals) (push) Successful in 7m3s
Update flake inputs / update-flake (push) Failing after 3m37s
cura5: fix package for wayland (#76)
2024-12-11 11:57:09 +11:00
.gitea ci: fix github auth 2024-12-08 12:30:14 +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/betanin: spring cleaning prepping for upstream 2024-08-15 15:24:13 +10:00
overlays Initial commit 2020-10-17 12:39:29 +11:00
pkgs cura5: fix package for wayland (#76) 2024-12-11 11:57:09 +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-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
      ];
    };
  };
}