[yevaud] Add current config to source control

This commit is contained in:
Katherina Walshe-Grey 2024-05-23 16:59:18 +01:00
parent 6e75621818
commit 0a728445ab
3 changed files with 217 additions and 5 deletions

View file

@ -4,11 +4,19 @@
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.tohru = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/tohru/configuration.nix
];
nixosConfigurations = {
tohru = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/tohru/configuration.nix
];
};
yevaud = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/yevaud/configuration.nix
];
};
};
};
}