Files
nix/hosts/common/configs/user/console/nix-direnv/template.nix
2025-01-21 16:47:40 +00:00

31 lines
535 B
Nix

{
inputs = {
nixpkgs = {
type = "github";
owner = "karaolidis";
repo = "nixpkgs";
ref = "integration";
};
flake-utils = {
url = "github:numtide/flake-utils";
};
};
outputs =
{ nixpkgs, ... }@inputs:
inputs.flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = [ ];
};
formatter = pkgs.nixfmt-rfc-style;
}
);
}