This commit is contained in:
Spectre 2024-06-06 23:45:33 +02:00
parent 5749f4c6ab
commit 8def5aa051
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{ {
description = "Main Flake by LuminiferousLilith"; description = "Main Flake: LuminiferousLilith";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
@ -29,8 +29,9 @@
} @ inputs: let } @ inputs: let
hosts = builtins.attrNames (builtins.readDir ./hosts); hosts = builtins.attrNames (builtins.readDir ./hosts);
mkHostConfig = host: mkHostConfig = host:
import "./hosts/${host}" { import ./hosts/${host} {
inherit inputs; inherit inputs;
hostname = host;
system = "x86_64-linux"; system = "x86_64-linux";
}; };
in { in {

View file

@ -0,0 +1,3 @@
{...}: {
}