Update configuration files

This commit is contained in:
Oliver Davies 2025-10-10 02:33:03 +01:00
parent c3cf2f249a
commit 13b6653536
7 changed files with 58 additions and 36 deletions

View file

@ -1,19 +1,26 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs = {
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = inputs:
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs { inherit system; };
in
{
devShells.${system}.default =
with pkgs;
mkShell {
buildInputs = [
nodejs
nodePackages.npm
];
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
nodejs
nodePackages.npm
];
};
};
};
}