Files
TDT4200/flake.nix
2025-08-26 18:26:59 +02:00

34 lines
622 B
Nix

{
description = "dependencies for parallel processing in c";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
gcc
gnumake
feh
feh
imagemagick_light
typst
typstyle
zip
unzip
feh
];
shellHook = ''
echo welcome!
'';
};
};
}