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

• Updated input 'flake-utils':
    'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a' (2024-03-11)
  → 'github:numtide/flake-utils/11707dc2f618dd54ca8739b309ec4fc024de578b' (2024-11-13)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/0aeab749216e4c073cece5d34bc01b79e717c3e0' (2024-07-02)
  → 'github:NixOS/nixpkgs/71a6392e367b08525ee710a93af2e80083b5b3e2' (2024-12-13)
2024-12-15 19:53:07 +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 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-12-15 19:53:07 +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
      ];
    };
  };
}