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

21 lines
387 B
Nix
Raw Normal View History

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