12 lines
326 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|