From 4a22a97760f7a39b5b30e11d175749b72bb6db25 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 24 Oct 2021 22:44:29 +0200 Subject: [PATCH] Initial implementation --- default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 default.nix diff --git a/default.nix b/default.nix new file mode 100755 index 0000000..281228c --- /dev/null +++ b/default.nix @@ -0,0 +1,23 @@ +#!/usr/bin/env nix-shell +# NixOS shell configuration to bootstrap the required dependencies to run and use the editor + +# NOTE(Krey): This is designed to contain ONLY editor-specific configuration **NOT** project specific + +{ + sources ? import ../../../25-env/nix/niv/sources.nix, + nixpkgs ? import sources.nixpkgs {} +}: +with nixpkgs; + stdenv.mkDerivation { + name = "RiXotStudio_codium-config"; + buildInputs = [ + fira-code # Default font with liqurature support + texlive.combined.scheme-full # Used to edit TeX files + vscodium # Editor + ]; + + shellHook = '' + # Status update + printf "\\n%s\\n" "Standard RiXotStudio development environment for vscodium has been set up" + ''; + }