rice/flake.nix

42 lines
968 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";
2022-12-02 16:55:53 +00:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
nur.url = "github:nix-community/NUR";
2022-08-16 19:14:35 +00:00
2022-08-22 18:32:26 +00:00
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-08-25 17:34:17 +00:00
cmp-conventionalcommits = {
url = "github:davidsierradz/cmp-conventionalcommits";
flake = false;
};
2022-08-25 16:57:02 +00:00
cmp-git = {
url = "github:petertriho/cmp-git";
flake = false;
};
2022-07-22 20:42:05 +00:00
home-manager = {
2022-12-02 16:55:53 +00:00
url = "github:nix-community/home-manager/release-22.11";
2022-07-22 20:42:05 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
# work around for nixpkgs version being too old
rust-tools-nvim = {
url = "github:simrat39/rust-tools.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];
};
};
}