egasimus / rabbits

Software by https://100r.co, packaged for Nix

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hundred Rabbits on Nix

TODO Submit PR to nixpkgs

Example usage with configuration.nix

Clone the repo:

git clone https://github.com/egasimus/rabbits /etc/nixos/rabbits

Import into configuration.nix:

{ pkgs, ... }: let
  # ...
  rabbits = (pkgs.callPackage (import ./rabbits/default.nix) {});
  # ...
in {
  environment.systemPackages = [
    # ...
    rabbits.orca
    rabbits.pilot
    rabbits.marabu
    rabbits.left
    rabbits.ronin
    rabbits.dotgrid
    # ...
  ];
}

Rebuild:

sudo nixos-rebuild switch --fast

Launch:

orca-osc
pilot-osc
marabu
left
ronin
dotgrid

Update:

cd /etc/nixos/rabbits
git pull
sudo nixos-rebuild switch --fast

Usage with overlays/profiles/flakes/etc.

Left as an exercise to the reader.

About

Software by https://100r.co, packaged for Nix


Languages

Language:Nix 89.5%Language:JavaScript 10.5%