rice/flake.nix

30 lines
664 B
Nix
Raw Normal View History

2022-07-22 20:42:05 +00:00
{
inputs = {
2022-08-16 19:14:35 +00:00
impermanence.url = "github:nix-community/impermanence";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05";
2022-08-22 18:32:26 +00:00
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-07-22 20:42:05 +00:00
home-manager = {
url = "github:nix-community/home-manager/release-22.05";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-08-16 19:14:35 +00:00
lsp-trouble = {
url = "github:simrat39/lsp-trouble.nvim";
flake = false;
};
2022-07-22 20:42:05 +00:00
};
outputs = {nixpkgs, ...} @ args: {
nixosConfigurations.fanya = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = args;
modules = [./fanya.nix];
};
};
}