Flake : Add a devshell with nixd.

This commit is contained in:
Dmitry Voronin 2024-10-11 22:41:10 +03:00
parent 280275f99f
commit 1611413d6f
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -136,6 +136,23 @@
)
);
# Dev shell for this repo.
devShells = let
system = "x86_64-linux";
lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages.${system};
in {
${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nixd
];
# buildInputs = with pkgs; [ ];
# LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
# SOURCE_DATE_EPOCH = "${toString self.lastModified}";
};
};
# Nixos systems.
nixosConfigurations = let
# Function to create a host. It does basic setup, like adding common modules.