no flakes
This commit is contained in:
parent
1a1a65439d
commit
ff079017d6
2 changed files with 12 additions and 1 deletions
|
|
@ -7,7 +7,6 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./flake.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
|
||||||
12
flake.nix
Normal file
12
flake.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue