rice/flake.nix
2024-05-20 12:06:15 +02:00

34 lines
750 B
Nix

{
inputs = {
impermanence.url = "github:nix-community/impermanence";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05";
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
cmp-git = {
url = "github:petertriho/cmp-git";
flake = false;
};
home-manager = {
url = "github:nix-community/home-manager/release-22.05";
inputs.nixpkgs.follows = "nixpkgs";
};
lsp-trouble = {
url = "github:simrat39/lsp-trouble.nvim";
flake = false;
};
};
outputs = {nixpkgs, ...} @ args: {
nixosConfigurations.fanya = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = args;
modules = [./fanya.nix];
};
};
}