2024-05-27 16:44:54 +00:00
|
|
|
{
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, ... }@attrs: {
|
2024-05-27 17:03:21 +00:00
|
|
|
nixosConfigurations."oven" = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = attrs;
|
|
|
|
modules = [ ./oven/configuration.nix ];
|
|
|
|
};
|
|
|
|
|
2024-05-27 16:44:54 +00:00
|
|
|
nixosConfigurations."pastila" = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = attrs;
|
|
|
|
modules = [ ./pastila/configuration.nix ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|