A Nix derivation to easily install the packages I publish.
Go to file
Tissevert c78a729a79 Add example snippets 2020-12-15 11:20:43 +01:00
README.md Add example snippets 2020-12-15 11:20:43 +01:00
default.nix Add hablo package 2020-12-14 21:07:44 +01:00

README.md

My Nix Packages

This Nix derivation provides an attribute set with each package referenced by its name to easily install the packages I publish.

Quick try

To quickly try a package ${PACKAGE_NAME} from this repository, you can issue on the command line :

nix-env -f 'https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.0.tar.gz' -i ${PACKAGE_NAME}

Declarative setup

To use this repository in a more reproducible and less imperative way, you can include the following snippet it in your /etc/nixos/configuration.nix or anywhere else you please :

let
  tissevertpkgs = import (
    fetchTarball https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.0.tar.gz
  ) {};
in

Then, anywhere where you select packages like for instance in environment.systemPackages or in your users.users.<name>.packages my packages are available within the attribute set tissevertpkgs like this for instance :

packages = [ pkgs.git pkgs.vim tissevertpkgs.SJW ]

Current package selection