Skip to content
/ nxt Public

Simple wrapper for nix-templates created using nix & charmbracelet's gum

License

Notifications You must be signed in to change notification settings

qrxnz/nxt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nxt

✒️ Description

Simple wrapper for nix-templates created using nix & charmbracelet's gum

nxt was created to facilitate the creation of projects using nix-templates

asdfgg.mp4

⚒️ Installation

Try it without installing

nix run github:qrxnz/nxt

Installation

Add input in your flake like:

{
 inputs = {
   nxt = {
     url = "github:qrxnz/nxt";
     inputs.nixpkgs.follows = "nixpkgs";
   };
 };
}

With the input added you can reference it directly:

{ inputs, system, ... }:
{
  # NixOS
  environment.systemPackages = [ inputs.nxt.packages.${pkgs.system}.default ];
  # home-manager
  home.packages = [ inputs.nxt.packages.${pkgs.system}.default ];
}

or

You can install this package imperatively with the following command

nix profile install github:qrxnz/nxt

🗒️ Credits

❤️ Special thanks

To Thomas Wehmöller for the nix-templates

About

Simple wrapper for nix-templates created using nix & charmbracelet's gum

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published