Skip to content

atomicptr/nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nix

A place to host my own nix packages

Usage

Flake

Just add this repo as an input

{
  # ...
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    atomicptr.url = "github:atomicptr/nix";
    # ...
  };

  # ...
}

Regular

Just fetch and import the repository:

let
  atomicptr = import (fetchGit { url = "http://github.com/atomicptr/nix.git"; }) {
    pkgs = import <nixpkgs> {
      config = {
        allowUnfree = true;
      };
    };
  };
in
{
  environment.systemPackages = with pkgs; [
    atomicptr.PACKAGE_NAME
  ];
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

No packages published

Contributors 2

  •  
  •  

Languages