2025-08-31 23:46:00 -04:00
|
|
|
{
|
|
|
|
|
description = "System flake";
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2025-09-14 11:44:37 -04:00
|
|
|
home-manager = {
|
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2025-09-14 11:52:13 -04:00
|
|
|
};
|
2025-08-31 23:46:00 -04:00
|
|
|
};
|
2025-09-14 11:44:37 -04:00
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
2025-08-31 23:46:00 -04:00
|
|
|
nixosConfigurations = {
|
|
|
|
|
mecca = nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "x86_64-linux";
|
2025-09-01 17:14:04 -04:00
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
modules = [
|
2025-09-01 10:54:03 -04:00
|
|
|
./hosts/common.nix
|
2025-09-01 00:32:34 -04:00
|
|
|
./hosts/mecca/configuration.nix
|
2025-09-01 01:04:40 -04:00
|
|
|
];
|
|
|
|
|
};
|
2025-08-31 23:46:00 -04:00
|
|
|
syntheticnexus = nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
modules = [
|
2025-09-01 10:54:03 -04:00
|
|
|
./hosts/common.nix
|
2025-09-01 00:32:34 -04:00
|
|
|
./hosts/syntheticnexus/configuration.nix
|
2025-08-31 23:46:00 -04:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|