This commit is contained in:
Julian 2022-12-18 22:32:40 -08:00
parent 23d6e56cea
commit 4218e90468
2 changed files with 19 additions and 2 deletions

12
flake.nix Normal file
View file

@ -0,0 +1,12 @@
{
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
];
};
};
}