Kix is a cli interface for kickstart.nix written in rust (yeah rust)
Dependencies: - nix - nix-command - nix flakes - git - fzf
- Install all the dependencies.
- Clone this git repo.
- In the repo you just cloned run:
nix profile install
- Now you have kix installed.
- Look here How to use
- Look here How to update
kix help
To install nix globally on any nixos machine that uses flakes is as easy as:
inputs.kix.url = "github:secretval/kix";
and then either:
environment.systemPackages = [inputs.kix.packages.${system}.default];
or
home.packages = [inputs.kix.packages.${system}.default];
You will have to create a variable system
for that to work or you can just replace the ${system}
with your system architecture.