nix/home/config/template/FHSEnv.nix

26 lines
471 B
Nix
Raw Normal View History

2024-03-10 11:42:33 +03:00
{
description = "";
2024-03-10 11:42:33 +03:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
2024-03-10 11:42:33 +03:00
outputs =
{ self, nixpkgs }@inputs:
let
system = "x86_64-linux";
lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system} = {
default =
with pkgs;
(buildFHSEnv {
name = "FHSEnv";
targetPkgs = pkgs: with pkgs; [ ];
}).env;
};
};
2024-03-10 11:42:33 +03:00
}