nixos-config/template/r/flake.nix

24 lines
497 B
Nix
Raw Normal View History

2023-10-09 10:44:07 -07:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
2024-08-14 11:14:20 -07:00
outputs = {
self,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
(rWrapper.override {
packages = with rPackages; [tidyverse];
})
];
};
});
2023-10-09 10:44:07 -07:00
}