hosts
This commit is contained in:
parent
5749f4c6ab
commit
8def5aa051
2 changed files with 6 additions and 2 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
3
hosts/lilith-pad/default.nix
Normal file
3
hosts/lilith-pad/default.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{...}: {
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue