This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/document/template/Blank.nix

30 lines
499 B
Nix
Raw Normal View History

2024-02-09 04:10:11 +03:00
{
description = "";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs } @inputs:
let
system = "x86_64-linux";
lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system} = {
default = pkgs.mkShell {
inputsFrom = with self.devShells.${system}; [
custom
];
};
custom = pkgs.mkShell rec {
nativeBuildInputs = with pkgs; [
];
buildInputs = with pkgs; [
];
};
};
};
}