21 lines
469 B
Nix
Raw Normal View History

2024-04-01 14:21:20 +02:00
{
description = "A very basic flake";
inputs = {
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, home-manager, nixpkgs }@inputs: {
nixosConfigurations = {
your-host = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [ ./hosts/your-host ];
};
};
};
}