ass3: handin

This commit is contained in:
2025-10-21 14:43:34 +02:00
parent 684b41c1ab
commit d2afe1e7ab
7 changed files with 269 additions and 0 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
description = "introki";
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; [
zip
];
shellHook = ''
echo welcome!
'';
};
};
}