19 lines
407 B
Nix
19 lines
407 B
Nix
{
|
|
description = "Metara stuff i guess";
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = inputs: with inputs; {
|
|
nixosConfigurations = {
|
|
chat-allthe-gay = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./host/chat.allthe.gay/hardware-configuration.nix
|
|
./host/chat.allthe.gay/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|