dotfiles/.config/nix/flake.nix

31 lines
890 B
Nix
Raw Normal View History

2025-08-31 23:46:00 -04:00
{
description = "System flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# stylix.url = "github:danth/stylix";
# stylix.inputs.nixpkgs.follows = "nixpkgs";
2025-08-31 23:46:00 -04:00
};
2025-09-01 00:36:20 -04:00
outputs = { self, nixpkgs, home-manager, ... }@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 = [
./hosts/common.nix
2025-09-01 00:32:34 -04:00
./hosts/mecca/configuration.nix
2025-09-13 20:12:46 -04:00
# inputs.stylix.nixosModules.stylix
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 = [
./hosts/common.nix
2025-09-01 00:32:34 -04:00
./hosts/syntheticnexus/configuration.nix
2025-09-13 20:12:46 -04:00
# inputs.stylix.nixosModules.stylix
2025-08-31 23:46:00 -04:00
];
};
};
};
}