polarmutex / nur

polarmutex nur repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Polarmutex NUR packages

Build and populate cache Update Flake Cachix Cache

My personal NUR repository

Packages Provided

awesomewm

awesome-git

awesome-battery_widget

bling

rubato

beancount

beancount-language-server-git

beangrow

other

neovim-git

wezterm-git

Usage

Flake enabled Nix:

{
    inputs.polar-nur.url = "github:polarmutex/nur";

    outputs = { self, polar-nur, ... }@inputs: {
        nixosConfigurations.desktop = inputs.nixpkgs.lib.nixosSystem {
            system = "x86_64-linux";
            modules = [
                { nixpkgs.overlays = [ polar-nur.overlay ]; }
                ./configuration.nix
            ];
        };
    };
}

Binary Cache

cachix use polarmutex or if you're like me, and is doing it the manual approach

{
nix.settings.substituters = [
    "https://cache.nixos.org?priority=10"
    "https://polarmutex.cachix.org"
];

nix.settings.trusted-public-keys = [
    "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
    "polarmutex.cachix.org-1:kUFH4ftZAlTrKlfFaKfdhKElKnvynBMOg77XRL2pc08="
];
}

About

polarmutex nur repo

License:MIT License


Languages

Language:Nix 100.0%