Improvements to installation process #1

Merged
kodi merged 3 commits from dev-server into main 2025-03-27 17:46:53 +01:00
3 changed files with 19 additions and 0 deletions
Showing only changes of commit 3772d67726 - Show all commits

1
dev-server/.envrc Normal file
View File

@ -0,0 +1 @@
use flake

1
dev-server/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.direnv

17
dev-server/flake.nix Normal file
View File

@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = with pkgs; mkShell {
buildInputs = with pkgs; [ bun ];
};
}
);
}