All Projects → nix-community → comma

nix-community / comma

Licence: other
Comma runs software without installing it. [maintainers=@Artturin,@burke,@DavHau]

Programming Languages

rust
11053 projects
Nix
1067 projects
shell
77523 projects

Labels

Projects that are alternatives of or similar to comma

rc
Structured system configuration (I moved from NixOS to GuixSD)
Stars: ✭ 97 (-84.5%)
Mutual labels:  nix, nixos
Nixpkgs Wayland
Automated, pre-built packages for Wayland (sway/wlroots) tools for NixOS.
Stars: ✭ 178 (-71.57%)
Mutual labels:  nix, nixos
Nixos Mailserver
A complete and Simple Nixos Mailserver
Stars: ✭ 172 (-72.52%)
Mutual labels:  nix, nixos
Nix 1p
A (more or less) one page introduction to Nix, the language.
Stars: ✭ 219 (-65.02%)
Mutual labels:  nix, nixos
Mach Nix
Create highly reproducible python environments
Stars: ✭ 231 (-63.1%)
Mutual labels:  nix, nixos
Vulnix
Vulnerability (CVE) scanner for Nix/NixOS.
Stars: ✭ 161 (-74.28%)
Mutual labels:  nix, nixos
All Hies
Cached Haskell IDE Engine Nix builds for all GHC versions
Stars: ✭ 201 (-67.89%)
Mutual labels:  nix, nixos
Appvm
Nix-based app VMs
Stars: ✭ 146 (-76.68%)
Mutual labels:  nix, nixos
Nox
Tools to make nix nicer to use
Stars: ✭ 232 (-62.94%)
Mutual labels:  nix, nixos
gradle2nix
Generate Nix expressions which build Gradle-based projects.
Stars: ✭ 71 (-88.66%)
Mutual labels:  nix, nixos
Home Manager
Manage a user environment using Nix [maintainer=@rycee]
Stars: ✭ 2,447 (+290.89%)
Mutual labels:  nix, nixos
nix-gaming
Gaming on Nix
Stars: ✭ 142 (-77.32%)
Mutual labels:  nix, nixos
Nix Bitcoin
A collection of Nix packages and NixOS modules for easily installing full-featured Bitcoin nodes with an emphasis on security.
Stars: ✭ 154 (-75.4%)
Mutual labels:  nix, nixos
Deploy Rs
A simple multi-profile Nix-flake deploy tool.
Stars: ✭ 164 (-73.8%)
Mutual labels:  nix, nixos
Dotfiles
My dotfiles
Stars: ✭ 150 (-76.04%)
Mutual labels:  nix, nixos
Arion
Run docker-compose with help from Nix/NixOS
Stars: ✭ 202 (-67.73%)
Mutual labels:  nix, nixos
Nixos Weekly
NixOS Weekly Newsletter
Stars: ✭ 137 (-78.12%)
Mutual labels:  nix, nixos
Shabka
Shabka. Declaritive description of my network, workstations and servers.
Stars: ✭ 138 (-77.96%)
Mutual labels:  nix, nixos
Nixbox
NixOS Vagrant boxes [[email protected]]
Stars: ✭ 189 (-69.81%)
Mutual labels:  nix, nixos
dotfiles
My NixOS configuration featuring awesome and neovim
Stars: ✭ 40 (-93.61%)
Mutual labels:  nix, nixos

comma

Comma runs software without installing it.

Basically it just wraps together nix shell -c and nix-index. You stick a , in front of a command to run it from whatever location it happens to occupy in nixpkgs without really thinking about it.

Installation

  • Nix with Flakes:

    $ nix profile install github:nix-community/comma
  • No flakes:

    $ nix-env -i -f "https://github.com/nix-community/comma/archive/master.tar.gz"

NixOS installation

  • No flakes:

    replace "v1.2.0" with the latest version

    environment.systemPackages =
    let
      comma = (import (pkgs.fetchFromGitHub {
        owner = "nix-community";
        repo = "comma";
        rev = "v1.2.0";
        sha256 = "0000000000000000000000000000000000000000000000000000";
      })).default;
    in [ comma ];

Usage

, cowsay neato

Prebuilt index

https://github.com/Mic92/nix-index-database

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].