Initial implementation

This commit is contained in:
Jacob Hrbek 2021-10-24 22:44:29 +02:00
parent 51b7cbd9da
commit 4a22a97760
No known key found for this signature in database
GPG Key ID: 31AE4020956E0A9A

23
default.nix Executable file

@ -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"
'';
}