2023-12-06 10:21:07 +01:00
|
|
|
{
|
2024-01-09 15:46:18 +01:00
|
|
|
description = "emilys config hell";
|
2023-12-06 10:21:07 +01:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, nixos-hardware, ... }@attrs: {
|
2024-01-09 15:46:18 +01:00
|
|
|
nixosConfigurations = {
|
|
|
|
web02 = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialAttrs = attrs;
|
|
|
|
modules = [
|
|
|
|
./config/common
|
|
|
|
./config/lxc.nix
|
|
|
|
./config/hosts/web02/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
ryuuko = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialAttrs = attrs;
|
|
|
|
modules = [
|
|
|
|
./config/common
|
|
|
|
./config/x1.nix
|
|
|
|
./config/hosts/ryuuko/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2023-12-06 10:21:07 +01:00
|
|
|
};
|
|
|
|
}
|