nixos/flake.nix
2022-12-18 22:32:40 -08:00

12 lines
326 B
Nix

{
description = "NixOS configuration with flakes";
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
outputs = { self, nixpkgs, nixos-hardware }: {
nixosConfigurations.<your-hostname> = nixpkgs.lib.nixosSystem {
modules = [
nixos-hardware.nixosModules.framework
];
};
};
}