Personal Nix User Repository
Go to file
github-actions[bot] a3f63e4a2c flake: update inputs
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/4989a246d7a390a859852baddb1013f825435cee' (2024-12-17)
  → 'github:NixOS/nixpkgs/2f9e2f85cb14a46410a1399aa9ea7ecf433e422e' (2025-01-12)
2025-01-12 19:52:53 +00: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 psst: update removed alias 2024-12-27 09:32:34 +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 2025-01-12 19:52:53 +00: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
      ];
    };
  };
}