no flakes

This commit is contained in:
Julian 2022-12-18 23:22:26 -08:00
parent 1a1a65439d
commit ff079017d6
2 changed files with 12 additions and 1 deletions

View file

@ -7,7 +7,6 @@
{
imports =
./hardware-configuration.nix
./flake.nix
];
# Bootloader.

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
];
};
};
}