This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
.nvim/flake.nix

27 lines
482 B
Nix
Raw Permalink Normal View History

2024-03-15 21:34:05 -03:00
{
description = "learning.rs";
2024-03-15 21:34:05 -03:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ self
, nixpkgs
, flake-utils
,
}:
flake-utils.lib.eachDefaultSystem (system:
2024-03-15 21:34:05 -03:00
let
pkgs = import nixpkgs {
inherit system;
};
2024-03-15 21:34:05 -03:00
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
stylua
];
};
});
2024-03-15 21:34:05 -03:00
}