jhonas
509d92569e
• Updated input 'flake-utils': 'github:numtide/flake-utils/93a2b84fc4b70d9e089d029deacc3583435c2ed6' (2023-03-15) → 'github:numtide/flake-utils/cfacdce06f30d2b68473a46042957675eebb3401' (2023-04-11) • Added input 'flake-utils/systems': 'github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e' (2023-04-09) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/4bb072f0a8b267613c127684e099a70e1f6ff106' (2023-03-27) → 'github:nixos/nixpkgs/645bc49f34fa8eff95479f0345ff57e55b53437e' (2023-04-19) |
||
---|---|---|
pkgs | ||
template | ||
.gitignore | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
overlay.nix | ||
README.md | ||
tritonshell.nix |
tritonshell
a nix dev & ops shell for triton and manta
What is the package manager nix
? For a refresher, please read on here.
-
If you're already on NixOS and / or have worked with
flakes
before, jump to 2. -
Install nix, the package manager
- Now, make sure you're ready to
nix
with flakes, this should give you some output:
nix flake --help
- Otherwise, proceed to enable flakes (still an experimental feature in
nix
): https://nixos.wiki/wiki/Flakes#Installing_flakes
- Now, make sure you're ready to
-
Get this nix flake template, it will be setup in a new directory
./tritonshell
(feel free to adjust this):
nix flake new --template "git+https://git.greenbaum.cloud/dev/tritonshell?ref=main" ./tritonshell \
&& cd tritonshell
- Optional: Adjust
./flake.nix
to match domains and data centers of your Triton Data Center setup. Look for theCUSTOMIZE
comment.
Greenbaum Cloud users skip this step, everything's preconfigured.
vim ./flake.nix
- Ready to go:
nix develop -c $SHELL
Optional:
If you'd like to add additional packages to your new tritonshell, you
can do so: just edit flake.nix
and look for devshell.packages
. Packages
added here will be pulled from the nixos-unstable
channel, you can search
for available packages here.
You can use nix-direnv
with this template, read here how to install it.
Then, just run:
direnv allow
in the newly created ./tritonshell
directory to automatically rebuild the
flake upon changes to the flake.nix
file.