Format config

This commit is contained in:
2026-01-27 17:38:40 +00:00
parent de494a2a87
commit ec7ada6ade
4 changed files with 135 additions and 66 deletions

View File

@@ -10,24 +10,26 @@
};
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
TrudePC = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
./hosts/TrudePC
];
};
outputs =
{ self, nixpkgs, ... }@inputs:
{
nixosConfigurations = {
TrudePC = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
./hosts/TrudePC
];
};
# Add future machines here following the same pattern:
# MachineName = nixpkgs.lib.nixosSystem {
# specialArgs = { inherit inputs; };
# modules = [
# ./common.nix
# ./hosts/MachineName
# ];
# };
# Add future machines here following the same pattern:
# MachineName = nixpkgs.lib.nixosSystem {
# specialArgs = { inherit inputs; };
# modules = [
# ./common.nix
# ./hosts/MachineName
# ];
# };
};
};
};
}