nix/user/common/template/Blank.nix

23 lines
445 B
Nix
Raw Normal View History

2024-03-10 11:42:33 +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 rec {
nativeBuildInputs = with pkgs; [ ];
buildInputs = with pkgs; [ ];
2024-05-07 22:45:53 +03:00
2024-06-22 23:34:03 +03:00
SOURCE_DATE_EPOCH = "${toString self.lastModified}";
2024-03-10 11:42:33 +03:00
};
};
};
}