Files
TDT4136/flake.nix
2025-10-21 14:55:50 +02:00

25 lines
435 B
Nix

{
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!
'';
};
};
}