rice/flake.nix

19 lines
465 B
Nix
Raw Normal View History

2022-07-22 20:42:05 +00:00
{
inputs = {
home-manager = {
url = "github:nix-community/home-manager/release-22.05";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence.url = "github:nix-community/impermanence";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05";
};
outputs = {nixpkgs, ...} @ args: {
nixosConfigurations.fanya = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = args;
modules = [./fanya.nix];
};
};
}